|
Point Cloud Library (PCL)
1.6.0
|
PassThrough uses the base Filter class methods to pass through all data that satisfies the user given constraints. More...
#include <pcl/filters/passthrough.h>


Public Types | |
| typedef PointIndices::Ptr | PointIndicesPtr |
| typedef PointIndices::ConstPtr | PointIndicesConstPtr |
Public Member Functions | |
| PassThrough (bool extract_removed_indices=false) | |
| Constructor. More... | |
| void | setKeepOrganized (bool val) |
| 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. More... | |
| bool | getKeepOrganized () |
| Obtain the value of the internal keep_organized_ parameter. More... | |
| void | setUserFilterValue (float val) |
| Provide a value that the filtered points should be set to instead of removing them. More... | |
| void | setFilterFieldName (const std::string &field_name) |
| Provide the name of the field to be used for filtering data. More... | |
| std::string const | getFilterFieldName () |
| Get the name of the field used for filtering. More... | |
| void | setFilterLimits (const double &limit_min, const double &limit_max) |
| Set the field filter limits. More... | |
| void | getFilterLimits (double &limit_min, double &limit_max) |
| Get the field filter limits (min/max) set by the user. More... | |
| void | setFilterLimitsNegative (const bool limit_negative) |
| Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max). More... | |
| void | getFilterLimitsNegative (bool &limit_negative) |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). More... | |
| bool | getFilterLimitsNegative () |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). More... | |
| IndicesConstPtr const | getRemovedIndices () |
| Get the point indices being removed. More... | |
| void | filter (PointCloud2 &output) |
| Calls the filtering method and returns the filtered dataset in output. More... | |
| void | setInputCloud (const PointCloud2ConstPtr &cloud) |
| Provide a pointer to the input dataset. More... | |
| PointCloud2ConstPtr const | getInputCloud () |
| Get a pointer to the input point cloud dataset. More... | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| IndicesPtr const | getIndices () |
| Get a pointer to the vector of indices used. More... | |
PassThrough uses the base Filter class methods to pass through all data that satisfies the user given constraints.
Definition at line 224 of file passthrough.h.
|
inherited |
Definition at line 280 of file pcl_base.h.
|
inherited |
Definition at line 279 of file pcl_base.h.
|
inline |
Constructor.
Definition at line 235 of file passthrough.h.
|
inherited |
Calls the filtering method and returns the filtered dataset in output.
| [out] | output | the resultant filtered point cloud dataset |
|
inline |
Get the name of the field used for filtering.
Definition at line 288 of file passthrough.h.
|
inline |
Get the field filter limits (min/max) set by the user.
The default values are -FLT_MAX, FLT_MAX.
| [out] | limit_min | the minimum allowed field value |
| [out] | limit_max | the maximum allowed field value |
Definition at line 309 of file passthrough.h.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
| [out] | limit_negative | true if data outside the interval [min; max] is to be returned, false otherwise |
Definition at line 329 of file passthrough.h.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
Definition at line 338 of file passthrough.h.
|
inlineinherited |
Get a pointer to the vector of indices used.
Definition at line 329 of file pcl_base.h.
|
inlineinherited |
Get a pointer to the input point cloud dataset.
Definition at line 303 of file pcl_base.h.
|
inline |
Obtain the value of the internal keep_organized_ parameter.
Definition at line 260 of file passthrough.h.
|
inlineinherited |
|
inline |
Provide the name of the field to be used for filtering data.
In conjunction with setFilterLimits, points having values outside this interval will be discarded.
| [in] | field_name | the name of the field that contains values used for filtering |
Definition at line 281 of file passthrough.h.
|
inline |
Set the field filter limits.
All points having field values outside this interval will be discarded.
| [in] | limit_min | the minimum allowed field value |
| [in] | limit_max | the maximum allowed field value |
Definition at line 298 of file passthrough.h.
|
inline |
Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max).
Default: false.
| [in] | limit_negative | return data inside the interval (false) or outside (true) |
Definition at line 320 of file passthrough.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 309 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 320 of file pcl_base.h.
|
inherited |
Provide a pointer to the input dataset.
| cloud | the const boost shared pointer to a PointCloud message |
|
inline |
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.
By default, points are removed.
| [in] | val | set to true whether the filtered points should be kept and set to a given user value (default: NaN) |
Definition at line 253 of file passthrough.h.
|
inline |
Provide a value that the filtered points should be set to instead of removing them.
Used in conjunction with setKeepOrganized ().
| [in] | val | the user given value that the filtered point dimensions should be set to |
Definition at line 271 of file passthrough.h.
1.8.4