I'm new in PCL. I'm using the PCL library and I'm looking for a way to extract points from a point cloud or copying particular points to a new one. I want to verify for each point if it respects a condition and I want to obtain a point cloud with only the good points.Thank you!
相关问题
- Sorting 3 numbers without branching [closed]
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
- What uses more memory in c++? An 2 ints or 2 funct
相关文章
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
- What exactly do pointers store? (C++)
- Converting glm::lookat matrix to quaternion and ba
- What is the correct way to declare and use a FILE
Use the ExtractIndices class:
example:
If you are new to PCL. It should be a good idea to take a look at at the documentation:
http://pointclouds.org/documentation/tutorials/
I think that what you are looking for is explained in this tutorial:
http://pointclouds.org/documentation/tutorials/remove_outliers.php#remove-outliers
Try to reproduce the example on your machine and then modify it to fit your needs.