Difference between revisions of "PCL/OpenNI troubleshooting"
m |
|||
Line 15: | Line 15: | ||
Go to the <span style="color:#FF8C00">''Platform/Linux/Build/Samples/''</span> subdirectory and find the samples that are giving errors (look at the compiler output to find them). For each one, enter its subdirectory and open the <span style="color:#1E90FF">''Makefile''</span> you will find there. Go to the line that says: | Go to the <span style="color:#FF8C00">''Platform/Linux/Build/Samples/''</span> subdirectory and find the samples that are giving errors (look at the compiler output to find them). For each one, enter its subdirectory and open the <span style="color:#1E90FF">''Makefile''</span> you will find there. Go to the line that says: | ||
− | < | + | <syntaxhighlight lang=Bash>USED_LIBS += glut</syntaxhighlight> |
And change it to the following: | And change it to the following: | ||
− | < | + | <syntaxhighlight lang=Bash>USED_LIBS += glut GL</syntaxhighlight> |
The samples should now compile. | The samples should now compile. |
Revision as of 12:10, 1 September 2013
This page try to covers all of the issues I ran into while trying to get my Kinect device ready for developing with PCL. If you have any questions regarding this subject or know of a different bug, feel free to send me an email describing it, and I will add it to this section. Just remember to try Google first!
No device found / No devices connected
If your system does not seem to be able to use Kinect, despite it being correctly plugged and listed by lsusb, then you may have a problem with the installed drivers. I eventually discovered that, in 32-bit Ubuntu, it was necessary to downgrade openni-dev and ps-engine to versions 1.3.2.1 and 5.0.3.3 respectively, using your package manager.
If you use Synaptic, the instructions are simple. Select both mentioned packages, press Ctrl+E to choose the desired version you want installed, and then apply the changes, accepting to overwrite any files. Then, to prevent them from being restored in the next upgrade, select each and click the "Lock Version" option in the "Package" menu. The packages will then be picked up by the "Status: Pinned" filter on the left. Reboot, and everything should be working now.
glInit() not found / OpenGL isues
If you get this error while compiling OpenNI, and you are sure you have installed all dependencies, then this is due to faulty Makefiles that do not link against GL libraries where they should.
Go to the Platform/Linux/Build/Samples/ subdirectory and find the samples that are giving errors (look at the compiler output to find them). For each one, enter its subdirectory and open the Makefile you will find there. Go to the line that says:
USED_LIBS += glut
And change it to the following:
USED_LIBS += glut GL
The samples should now compile.