davidcaron / pclpy

Python bindings for the Point Cloud Library (PCL)
MIT License
428 stars 59 forks source link

Generic warning:In..\Rendering\Core\vtkActor.cxx, line 43. Error: no override found for vtkactor #58

Open JinXiangLai opened 4 years ago

JinXiangLai commented 4 years ago

I want to show a cloud whith it's normals, my code is: viewer1 = pcl.visualization.PCLVisualizer( 'cloud_normal viewer' ) viewer1.addPointCloud( cloud ) viewer1.addPointCloudNormals( cloud,cloud_normals ) viewer1.addCoordinateSystem( 1.0 ) while( not viewer1.wasStopped() ): viewer1.spinOnce( 100 ) But there is something wrong, it tell me that no override found for vtkactor What can I do to solve this problem.

maguangyan commented 3 years ago

I have the same problem and it hasn't been solved yet