We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在633至637行 sor.setInputCloud(input_cloud_ptr); sor.setLeafSize (0.005f, 0.005f, 0.005f); sor.filter(*cloud_filtered); std::cerr << "Number of points after filtered " << cloud_filtered->size() << std::endl; seg.setPointCloud(input_cloud_ptr); 为什么对input_cloud_ptr进行滤波之后在后续分割阶段仍然使用了input_cloud_ptr而不是滤波后的cloud_filtered呢
The text was updated successfully, but these errors were encountered:
我改成seg.setPointCloud(cloud_filtered);之后发现过滤并没有生效 体素滤波器应该会进行下采样,但是点的数目却没有变化
Sorry, something went wrong.
No branches or pull requests
在633至637行
sor.setInputCloud(input_cloud_ptr);
sor.setLeafSize (0.005f, 0.005f, 0.005f);
sor.filter(*cloud_filtered);
std::cerr << "Number of points after filtered " << cloud_filtered->size() << std::endl;
seg.setPointCloud(input_cloud_ptr);
为什么对input_cloud_ptr进行滤波之后在后续分割阶段仍然使用了input_cloud_ptr而不是滤波后的cloud_filtered呢
The text was updated successfully, but these errors were encountered: