Code Monkey home page Code Monkey logo

Comments (9)

giacomodabisias avatar giacomodabisias commented on July 2, 2024

Hi, is the protonect example working which comes with libfreenect?

from libfreenect2pclgrabber.

giacomodabisias avatar giacomodabisias commented on July 2, 2024

I just modified something so maybe try to checkout the previous version.
Git log
Git checkout COMMIT_ID

from libfreenect2pclgrabber.

37 avatar 37 commented on July 2, 2024

Thanks for getting back to me. Libfreenect2's protonect (/bin/Protonect) runs perfectly in both default and cpu only mode.

Just reverted to commit:

98a7464 ..

with no luck; still getting the same error.

I should probably note that I am using PCL v1.8, rather than 1.72 and recieve the following warning when I make:


Scanning dependencies of target Kinect2Grabber
[ 50%] Building CXX object CMakeFiles/Kinect2Grabber.dir/test.cpp.o
In file included from /home/grace/Code/cpp/libfreenect2pclgrabber/test.cpp:20:0:
/usr/include/pcl-1.8/pcl/visualization/cloud_viewer.h:202:14: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
         std::auto_ptr<CloudViewer_impl> impl_;
              ^
In file included from /usr/include/c++/5.3.0/memory:81:0,
                 from /usr/include/boost/config/no_tr1/memory.hpp:21,
                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:23,
                 from /usr/include/boost/shared_ptr.hpp:17,
                 from /usr/include/pcl-1.8/pcl/PCLHeader.h:10,
                 from /usr/include/pcl-1.8/pcl/point_cloud.h:48,
                 from /home/grace/Code/cpp/libfreenect2pclgrabber/k2g.h:27,
                 from /home/grace/Code/cpp/libfreenect2pclgrabber/test.cpp:19:
/usr/include/c++/5.3.0/bits/unique_ptr.h:49:28: note: declared here
   template<typename> class auto_ptr;
                            ^
[100%] Linking CXX executable Kinect2Grabber
[100%] Built target Kinect2Grabber

I'll try and compile and test PCL1.72 tonight unless you have any other ideas?

from libfreenect2pclgrabber.

giacomodabisias avatar giacomodabisias commented on July 2, 2024

Hi, I have no kinect2 right now but on Monday I will test it and get back
to you.
Il 27/Feb/2016 10:09, "Keaton Okkonen" [email protected] ha
scritto:

Thanks for getting back to me. Libfreenect2's protonect (/bin/Protonect)
runs perfectly in both default and cpu only mode.

Just reverted to commit:

98a7464
98a7464
with no luck; still getting the same error.

I should probably note that I am using PCL v1.8, rather than 1.72 and
recieve this warning when I make.

Scanning dependencies of target Kinect2Grabber
[ 50%] Building CXX object CMakeFiles/Kinect2Grabber.dir/test.cpp.o
In file included from /home/grace/Code/cpp/libfreenect2pclgrabber/test.cpp:20:0:
/usr/include/pcl-1.8/pcl/visualization/cloud_viewer.h:202:14: warning: ‘template class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
std::auto_ptr<CloudViewer_impl> impl_;
^
In file included from /usr/include/c++/5.3.0/memory:81:0,
from /usr/include/boost/config/no_tr1/memory.hpp:21,
from /usr/include/boost/smart_ptr/shared_ptr.hpp:23,
from /usr/include/boost/shared_ptr.hpp:17,
from /usr/include/pcl-1.8/pcl/PCLHeader.h:10,
from /usr/include/pcl-1.8/pcl/point_cloud.h:48,
from /home/grace/Code/cpp/libfreenect2pclgrabber/k2g.h:27,
from /home/grace/Code/cpp/libfreenect2pclgrabber/test.cpp:19:
/usr/include/c++/5.3.0/bits/unique_ptr.h:49:28: note: declared here
template class auto_ptr;
^
[100%] Linking CXX executable Kinect2Grabber
[100%] Built target Kinect2Grabber

I'll try and compile and test PCL1.72 tonight unless you have any other
ideas?


Reply to this email directly or view it on GitHub
#15 (comment)
.

from libfreenect2pclgrabber.

37 avatar 37 commented on July 2, 2024

Hey again. I've noticed (after updating various packages and reinstalling VTK6) that the first time I run test.cpp after a reboot will fail at initialising the viewer; however it seems to initialise properly otherwise:

[grace@gracehost build]$ ./Kinect2Grabber 
Syntax is: ./Kinect2Grabber [-processor 0|1|2] -processor options 0,1,2 correspond to CPU, OPENCL, and OPENGL respectively
[Info] [Freenect2Impl] enumerating devices...
[Info] [Freenect2Impl] 10 usb devices connected
[Info] [Freenect2Impl] found valid Kinect v2 @4:3 with serial 056947440847
[Info] [Freenect2Impl] found 1 devices
creating OpenGL processor
[Info] [Freenect2DeviceImpl] opening...
[Info] [Freenect2DeviceImpl] opened
[Info] [Freenect2DeviceImpl] starting...
[Info] [Freenect2DeviceImpl] enabling usb transfer submission...
[Info] [Freenect2DeviceImpl] submitting usb transfers...
[Info] [Freenect2DeviceImpl] started
getting cloud
[Info] [TurboJpegRgbPacketProcessor] avg. time: 26.7362ms -> ~37.4024Hz
[Info] [TurboJpegRgbPacketProcessor] avg. time: 26.4923ms -> ~37.7468Hz
[Info] [TurboJpegRgbPacketProcessor] avg. time: 22.0208ms -> ~45.4117Hz

For some reason it gets stuck at processing the RGB and never reaches this line

boost::shared_ptrpcl::visualization::CloudViewer viewer(new pcl::visualization::CloudViewer ("3D Viewer"));

Because it never registers the KeyboardCallback I cannot exit it properly; and until I reboot the device will throw errors such as this:

[grace@gracehost build]$ ./Kinect2Grabber 
Syntax is: ./Kinect2Grabber [-processor 0|1|2] -processor options 0,1,2 correspond to CPU, OPENCL, and OPENGL respectively
[Info] [Freenect2Impl] enumerating devices...
[Info] [Freenect2Impl] 10 usb devices connected
[Info] [Freenect2Impl] found valid Kinect v2 @2:3 with serial 056947440847
[Info] [Freenect2Impl] found 1 devices
creating OpenGL processor
[Info] [Freenect2DeviceImpl] opening...
[Info] [Freenect2DeviceImpl] opened
[Info] [Freenect2DeviceImpl] starting...
[Error] [protocol::CommandTransaction] bulk transfer failed: LIBUSB_ERROR_IO Input/Output Error
[Error] [IrCameraTables] 217088 pixels in x/ztable have incorrect undistortion.
*** Error in `./Kinect2Grabber': double free or corruption (!prev): 0x0000000005cadee0 ***
======= Backtrace: =========
/usr/lib/libc.so.6(+0x6f364)[0x7fdd1bdcc364]
/usr/lib/libc.so.6(+0x74d96)[0x7fdd1bdd1d96]
/usr/lib/libc.so.6(+0x7557e)[0x7fdd1bdd257e]
/usr/lib/libfreenect2.so.0.1(+0x19421)[0x7fdd45c52421]
/usr/lib/libfreenect2.so.0.1(+0x1f317)[0x7fdd45c58317]
./Kinect2Grabber(_ZN3K2GC1E9processorb+0x358)[0x4150c8]
./Kinect2Grabber(main+0x88)[0x40a598]
/usr/lib/libc.so.6(__libc_start_main+0xf0)[0x7fdd1bd7d710]
./Kinect2Grabber(_start+0x29)[0x40b829]
======= Memory map: ========
00400000-00419000 r-xp 00000000 08:04 265050                             /home/grace/Code/cpp/libfreenect2pclgrabber/build/Kinect2Grabber
...
... continues

Sorry to be pestering you, I hope you're having a great weekend :)

from libfreenect2pclgrabber.

giacomodabisias avatar giacomodabisias commented on July 2, 2024

Hi,
did you use the modified libusb version which comes with libfreenect2?
I imagine you built pcl with visualization, else the grabber would not even build.
On what system are you working?

from libfreenect2pclgrabber.

giacomodabisias avatar giacomodabisias commented on July 2, 2024

OpenKinect/libfreenect2#97 fixes the problem executing
"echo 64 > /sys/module/usbcore/parameters/usbfs_memory_mb"

from libfreenect2pclgrabber.

37 avatar 37 commented on July 2, 2024

Ah this looks like it! Will attempt to apply fixes and report back. Thanks mate!

from libfreenect2pclgrabber.

37 avatar 37 commented on July 2, 2024

Update: Fixed.
I was using PCL built from the AUR (arch linux), which seemed to be having issues using VTK7. I noticed that (as I was using this as my first grabber for PCL, and the first time using visualiser), near any PCL visualiser example threw the same issue; so it was an error with my PCL install.

What I did was:

uninstall PCL.
uninstall openni
uninstall openni2
uninstall libfreenect2
uninstalled vtk6 (didn't reinstall)
reinstalled vtk7
reinstalled Libfreenect2, openni2, openni.
compiled PCL1.8 experimental from source, alongside all listed dependencies.

Hey presto: it's working beautifully.
screenshot from 2016-03-01 22-30-42
screenshot from 2016-03-01 22-36-19

Thanks again for your assistance and this lovely tool. Now I hope to start running filters on my cloud and do some object detection!

from libfreenect2pclgrabber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.