CropBox is a filter that allows the user to filter all the data inside of a given box. More...
#include <crop_box.h>
Public Member Functions | |
CropBox () | |
Empty constructor. | |
Eigen::Vector4f | getMax () const |
Get the value of the maxiomum point of the box, as set by the user. | |
Eigen::Vector4f | getMin () const |
Get the value of the minimum point of the box, as set by the user. | |
Eigen::Vector3f | getRotation () const |
Get the value of the box rotatation parameter, as set by the user. | |
Eigen::Affine3f | getTransform () const |
Get the value of the transformation parameter, as set by the user. | |
Eigen::Vector3f | getTranslation () const |
Get the value of the box translation parameter as set by the user. | |
void | setMax (const Eigen::Vector4f &max_pt) |
Set the maximum point of the box. | |
void | setMin (const Eigen::Vector4f &min_pt) |
Set the minimum point of the box. | |
void | setRotation (const Eigen::Vector3f &rotation) |
Set a rotation value for the box. | |
void | setTransform (const Eigen::Affine3f &transform) |
Set a transformation that should be applied to the cloud before filtering. | |
void | setTranslation (const Eigen::Vector3f &translation) |
Set a translation value for the box. | |
Protected Member Functions | |
void | applyFilter (PointCloud &output) |
Sample of point indices into a separate PointCloud. | |
void | applyFilter (std::vector< int > &indices) |
Sample of point indices. | |
Private Types | |
typedef Filter< PointT > ::PointCloud | PointCloud |
typedef PointCloud::ConstPtr | PointCloudConstPtr |
typedef PointCloud::Ptr | PointCloudPtr |
Private Attributes | |
Eigen::Vector4f | max_pt_ |
The maximum point of the box. | |
Eigen::Vector4f | min_pt_ |
The minimum point of the box. | |
Eigen::Vector3f | rotation_ |
The 3D rotation for the box. | |
Eigen::Affine3f | transform_ |
The affine transform applied to the cloud. | |
Eigen::Vector3f | translation_ |
The 3D translation for the box. |
CropBox is a filter that allows the user to filter all the data inside of a given box.
Definition at line 57 of file crop_box.h.
typedef Filter<PointT>::PointCloud pcl::CropBox< PointT >::PointCloud [private] |
Reimplemented from pcl::FilterIndices< PointT >.
Definition at line 64 of file crop_box.h.
typedef PointCloud::ConstPtr pcl::CropBox< PointT >::PointCloudConstPtr [private] |
Reimplemented from pcl::Filter< PointT >.
Definition at line 66 of file crop_box.h.
typedef PointCloud::Ptr pcl::CropBox< PointT >::PointCloudPtr [private] |
Reimplemented from pcl::Filter< PointT >.
Definition at line 65 of file crop_box.h.
pcl::CropBox< PointT >::CropBox | ( | ) | [inline] |
Empty constructor.
Definition at line 70 of file crop_box.h.
void pcl::CropBox< PointT >::applyFilter | ( | PointCloud & | output | ) | [protected, virtual] |
Sample of point indices into a separate PointCloud.
[out] | output | the resultant point cloud |
Implements pcl::Filter< PointT >.
Definition at line 49 of file crop_box.hpp.
void pcl::CropBox< PointT >::applyFilter | ( | std::vector< int > & | indices | ) | [protected, virtual] |
Sample of point indices.
[out] | indices | the resultant point cloud indices |
Implements pcl::FilterIndices< PointT >.
Definition at line 107 of file crop_box.hpp.
Eigen::Vector4f pcl::CropBox< PointT >::getMax | ( | ) | const [inline] |
Get the value of the maxiomum point of the box, as set by the user.
Definition at line 111 of file crop_box.h.
Eigen::Vector4f pcl::CropBox< PointT >::getMin | ( | ) | const [inline] |
Get the value of the minimum point of the box, as set by the user.
Definition at line 93 of file crop_box.h.
Eigen::Vector3f pcl::CropBox< PointT >::getRotation | ( | ) | const [inline] |
Get the value of the box rotatation parameter, as set by the user.
Definition at line 143 of file crop_box.h.
Eigen::Affine3f pcl::CropBox< PointT >::getTransform | ( | ) | const [inline] |
Get the value of the transformation parameter, as set by the user.
Definition at line 159 of file crop_box.h.
Eigen::Vector3f pcl::CropBox< PointT >::getTranslation | ( | ) | const [inline] |
Get the value of the box translation parameter as set by the user.
Definition at line 127 of file crop_box.h.
void pcl::CropBox< PointT >::setMax | ( | const Eigen::Vector4f & | max_pt | ) | [inline] |
Set the maximum point of the box.
[in] | max_pt | the maximum point of the box |
Definition at line 102 of file crop_box.h.
void pcl::CropBox< PointT >::setMin | ( | const Eigen::Vector4f & | min_pt | ) | [inline] |
Set the minimum point of the box.
[in] | min_pt | the minimum point of the box |
Definition at line 84 of file crop_box.h.
void pcl::CropBox< PointT >::setRotation | ( | const Eigen::Vector3f & | rotation | ) | [inline] |
Set a rotation value for the box.
[in] | rotation | the (rx,ry,rz) values that the box should be rotated by |
Definition at line 136 of file crop_box.h.
void pcl::CropBox< PointT >::setTransform | ( | const Eigen::Affine3f & | transform | ) | [inline] |
Set a transformation that should be applied to the cloud before filtering.
[in] | transform | an affine transformation that needs to be applied to the cloud before filtering |
Definition at line 152 of file crop_box.h.
void pcl::CropBox< PointT >::setTranslation | ( | const Eigen::Vector3f & | translation | ) | [inline] |
Set a translation value for the box.
[in] | translation | the (tx,ty,tz) values that the box should be translated by |
Definition at line 120 of file crop_box.h.
Eigen::Vector4f pcl::CropBox< PointT >::max_pt_ [private] |
The maximum point of the box.
Definition at line 181 of file crop_box.h.
Eigen::Vector4f pcl::CropBox< PointT >::min_pt_ [private] |
The minimum point of the box.
Definition at line 179 of file crop_box.h.
Eigen::Vector3f pcl::CropBox< PointT >::rotation_ [private] |
The 3D rotation for the box.
Definition at line 183 of file crop_box.h.
Eigen::Affine3f pcl::CropBox< PointT >::transform_ [private] |
The affine transform applied to the cloud.
Definition at line 187 of file crop_box.h.
Eigen::Vector3f pcl::CropBox< PointT >::translation_ [private] |
The 3D translation for the box.
Definition at line 185 of file crop_box.h.