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
When I used this class to generate grids, I found that some grids were found to be opposite, resulting in the display effect of exported STL file being different from that of PCL visual window. I would like to ask if there is any method to repair the normal line
And I found that when using the same method of normal estimation, neither Poisson nor moving cube will have the opposite situation of normal, only greedy projection method will
When I used this class to generate grids, I found that some grids were found to be opposite, resulting in the display effect of exported STL file being different from that of PCL visual window. I would like to ask if there is any method to repair the normal line
And I found that when using the same method of normal estimation, neither Poisson nor moving cube will have the opposite situation of normal, only greedy projection method will
PCL visualization
STL file display
` std::cout << "Using mls method estimation..." << endl;;
pcl::PointCloudpcl::PointNormal mls_points1;
pcl::PointCloudpcl::PointNormal::Ptr mls_points(new pcl::PointCloudpcl::PointNormal());
pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal> mls;
cout << "MLS前点云数:" << cloudTranslated->points.size() << endl;
mls.setComputeNormals(true);
mls.setInputCloud(cloudTranslated);
`
The text was updated successfully, but these errors were encountered: