|
Point Cloud Library (PCL)
1.7.2
|
ExtractIndices extracts a set of indices from a point cloud. More...
#include <pcl/filters/extract_indices.h>
Inheritance diagram for pcl::ExtractIndices< pcl::PCLPointCloud2 >:Public Types | |
| typedef pcl::PCLPointCloud2 | PCLPointCloud2 |
| typedef PCLPointCloud2::Ptr | PCLPointCloud2Ptr |
| typedef PCLPointCloud2::ConstPtr | PCLPointCloud2ConstPtr |
Public Types inherited from pcl::FilterIndices< pcl::PCLPointCloud2 > | |
| typedef pcl::PCLPointCloud2 | PCLPointCloud2 |
Public Types inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| typedef boost::shared_ptr < Filter< pcl::PCLPointCloud2 > > | Ptr |
| typedef boost::shared_ptr < const Filter < pcl::PCLPointCloud2 > > | ConstPtr |
| typedef pcl::PCLPointCloud2 | PCLPointCloud2 |
| typedef PCLPointCloud2::Ptr | PCLPointCloud2Ptr |
| typedef PCLPointCloud2::ConstPtr | PCLPointCloud2ConstPtr |
Public Types inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| typedef pcl::PCLPointCloud2 | PCLPointCloud2 |
| typedef boost::shared_ptr < PCLPointCloud2 > | PCLPointCloud2Ptr |
| typedef boost::shared_ptr < PCLPointCloud2 const > | PCLPointCloud2ConstPtr |
| typedef boost::shared_ptr < PointIndices > | PointIndicesPtr |
| typedef boost::shared_ptr < PointIndices const > | PointIndicesConstPtr |
Public Member Functions | |
| ExtractIndices () | |
| Empty constructor. | |
Public Member Functions inherited from pcl::FilterIndices< pcl::PCLPointCloud2 > | |
| FilterIndices (bool extract_removed_indices=false) | |
| Constructor. | |
| virtual | ~FilterIndices () |
| Empty virtual destructor. | |
| virtual void | filter (PCLPointCloud2 &output) |
| Calls the filtering method and returns the filtered dataset in output. | |
| void | filter (std::vector< int > &indices) |
| Calls the filtering method and returns the filtered point cloud indices. | |
| void | setNegative (bool negative) |
| Set whether the regular conditions for points filtering should apply, or the inverted conditions. | |
| bool | getNegative () |
| Get whether the regular conditions for points filtering should apply, or the inverted conditions. | |
| void | setKeepOrganized (bool keep_organized) |
| Set whether the filtered points should be kept and set to the value given through setUserFilterValue (default: NaN), or removed from the PointCloud, thus potentially breaking its organized structure. | |
| bool | getKeepOrganized () |
| Get whether the filtered points should be kept and set to the value given through setUserFilterValue (default = NaN), or removed from the PointCloud, thus potentially breaking its organized structure. | |
| void | setUserFilterValue (float value) |
| Provide a value that the filtered points should be set to instead of removing them. | |
Public Member Functions inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| Filter (bool extract_removed_indices=false) | |
| Empty constructor. | |
| virtual | ~Filter () |
| Empty destructor. | |
| IndicesConstPtr const | getRemovedIndices () |
| Get the point indices being removed. | |
| void | getRemovedIndices (PointIndices &pi) |
| Get the point indices being removed. | |
Public Member Functions inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| PCLBase () | |
| Empty constructor. | |
| virtual | ~PCLBase () |
| destructor. | |
| void | setInputCloud (const PCLPointCloud2ConstPtr &cloud) |
| Provide a pointer to the input dataset. | |
| PCLPointCloud2ConstPtr const | getInputCloud () |
| Get a pointer to the input point cloud dataset. | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| IndicesPtr const | getIndices () |
| Get a pointer to the vector of indices used. | |
Protected Member Functions | |
| void | applyFilter (PCLPointCloud2 &output) |
| Extract point indices into a separate PointCloud. | |
| void | applyFilter (std::vector< int > &indices) |
| Extract point indices. | |
Additional Inherited Members | |
Protected Attributes inherited from pcl::FilterIndices< pcl::PCLPointCloud2 > | |
| bool | negative_ |
| False = normal filter behavior (default), true = inverted behavior. | |
| bool | keep_organized_ |
| False = remove points (default), true = redefine points, keep structure. | |
| float | user_filter_value_ |
| The user given value that the filtered point dimensions should be set to (default = NaN). | |
ExtractIndices extracts a set of indices from a point cloud.
Usage examples:
Definition at line 161 of file extract_indices.h.
Definition at line 164 of file extract_indices.h.
Definition at line 166 of file extract_indices.h.
Definition at line 165 of file extract_indices.h.
|
inline |
Empty constructor.
Definition at line 169 of file extract_indices.h.
|
protectedvirtual |
Extract point indices into a separate PointCloud.
| [out] | output | the resultant point cloud |
Implements pcl::FilterIndices< pcl::PCLPointCloud2 >.
|
protectedvirtual |
Extract point indices.
| indices | the resultant indices |
Implements pcl::FilterIndices< pcl::PCLPointCloud2 >.