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.
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.