-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImageViewer "Error vtkTrivialProducer: This data object does not contain the requested extend #910
Comments
Hi, PCL trunk 11/09 CordialementNorman Acosta 2014-09-15 12:03 GMT+02:00 Victor Lamoine [email protected]:
|
I faced the same issue when I run the sample code |
I have the same issue. Might be something that occurs only on Windows. However the capture still works. Hit 'h' to see the available commands and take either a cloud or a mesh with the appropriate commands. The preview will work as well afterwards. |
I have the same issue on Ununtu: PCL trunk 30/09 |
Just in case, this does not apply to vtk5, it works well for me. |
Hey guys, I got the same error with the PCL example "Range Image Visualization" (http://pointclouds.org/documentation/tutorials/range_image_visualization.php) ERROR: In C:\VTK-master\Common\ExecutionModel\vtkTrivialProducer.cxx, line 279 Windows 7 64bit |
I think the migration to VTK6 is incomplete in image_viewer.cpp. I'm gonna take a look at this. |
Thanks in advance, Victor. It would be nice to have this ;) |
Problems happens precisely in
I can't find a solution to this. I am able to write a working VTK renderer using VTK6 but I can't find the problem in PCL implementation. |
Hi, |
I tested and unfortunately it doesn't solve this issue! |
Hi Victor, ImageViewer::addRGBImage (... |
Thanks for helping!
|
Hi Victor, I could reproduce the error. I think its on side of vtk and was fixed on 21.5.14 in the vtk trunk: http://vtk.org/gitweb?p=VTK.git;a=commitdiff;h=1a0b4e9dde815f84e48ee9912d19be9687c97399 @@ -249,24 +269,21 @@ vtkTrivialProducer::ProcessRequest So I think vtk6 versions after this commit should work with the code as is, for others with older vtk6 versions this might help: Replace (image_viewer.cpp, line 129):
With:
|
The SetInputData() does not set a pipeline connection. When you use it, you need to make sure that the pipeline that produce the data is manually updated. So adding a If your intention is to setup a pipeline connection such that any change in filter parameters are automatically reflected in the viewer, use this instead: |
Creating an instance of pcl::visualization::ImageViewer
pcl::visualization::ImageViewer::Ptr m_viewer = pcl::visualization::ImageViewer::Ptr(new pcl::visualization::ImageViewer("PCL Image Viewer"));
I got the following error:
ERROR: In VTK-6_1_0\src\Common\ExecutionModel\vtkTrivialProducer.cxx, line 268
vtkTrivialProducer (00000010A7774E50): This data object does not contain the requested extent.
I don't know if is a VTK issue or is pcl integration.
http://www.pcl-users.org/PCL-Visualizer-Error-vtkTrivialProducer-td4035513.html
The text was updated successfully, but these errors were encountered: