You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 30, 2023. It is now read-only.
I had some issues with the pip version of python-pcl since it seems to depend on pcl 1.7 (pretty much the same as here #317).
One advice was to install it from source via python3 setup.py install, which failed for me. This pull request contains the fixes I have made to build this lib:
Ubuntu 18.04 uses pcl v1.8 with vtk v6.3 -> changed vtk_version from 7.0 to 6.3
linking vtk 6.3 yielded some linker errors. Removing the missing libraries from the list fixed the issues for me.
I had some issues with the pip version of python-pcl since it seems to depend on pcl 1.7 (pretty much the same as here #317).
One advice was to install it from source via python3 setup.py install, which failed for me. This pull request contains the fixes I have made to build this lib:
Ubuntu 18.04 uses pcl v1.8 with vtk v6.3 -> changed vtk_version from 7.0 to 6.3
linking vtk 6.3 yielded some linker errors. Removing the missing libraries from the list fixed the issues for me.
This change is
My environment: agx-xavier + ubuntu18.04 + vtk6.3 + python-pcl
I use this way to install the python-pcl successfully. But when i use pcl_visualization to visualize the points cloud, it aborted.
And i notice that you add pcl/pcl_visualization.cpp in the file named .gitignore, do u mean the visualization can not work.
When i test, the errors :
ERROR: In /build/vtk6-5rzKol/vtk6-6.3.0+dfsg1/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx, line 394
vtkXOpenGLRenderWindow (0x20813810): Could not find a decent visual
ERROR: In /build/vtk6-5rzKol/vtk6-6.3.0+dfsg1/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx, line 394
vtkXOpenGLRenderWindow (0x20813810): Could not find a decent visual
ERROR: In /build/vtk6-5rzKol/vtk6-6.3.0+dfsg1/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx, line 394
vtkXOpenGLRenderWindow (0x20813810): Could not find a decent visual
ERROR: In /build/vtk6-5rzKol/vtk6-6.3.0+dfsg1/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx, line 633
vtkXOpenGLRenderWindow (0x20813810): Cannot create GLX context. Aborting.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
None yet
3 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey,
I had some issues with the pip version of python-pcl since it seems to depend on pcl 1.7 (pretty much the same as here #317).
One advice was to install it from source via
python3 setup.py install, which failed for me. This pull request contains the fixes I have made to build this lib:This change is