Implementation of a plane clipper in 3D. More...
#include <plane_clipper3D.h>
Public Member Functions | |
virtual bool | clipLineSegment3D (PointT &from, PointT &to) const |
virtual void | clipPlanarPolygon3D (const std::vector< PointT > &polygon, std::vector< PointT > &clipped_polygon) const |
virtual bool | clipPoint3D (const PointT &point) const |
interface to clip a single point | |
virtual void | clipPointCloud3D (const pcl::PointCloud< PointT > &cloud_in, std::vector< int > &clipped, const std::vector< int > &indices=std::vector< int >()) const |
interface to clip a point cloud | |
virtual Clipper3D< PointT > * | clone () const |
polymorphic method to clone the underlying clipper with its parameters. | |
const Eigen::Vector4f & | getPlaneParameters () const |
return the current plane parameters | |
PlaneClipper3D (const Eigen::Vector4f &plane_params) | |
Constructor taking the homogeneous representation of the plane as a Eigen::Vector4f. | |
void | setPlaneParameters (const Eigen::Vector4f &plane_params) |
Set new plane parameters. | |
virtual | ~PlaneClipper3D () throw () |
Protected Member Functions | |
float | getDistance (const PointT &point) const |
Private Attributes | |
Eigen::Vector4f | plane_params_ |
Implementation of a plane clipper in 3D.
Definition at line 49 of file plane_clipper3D.h.
pcl::PlaneClipper3D< PointT >::PlaneClipper3D | ( | const Eigen::Vector4f & | plane_params | ) |
Constructor taking the homogeneous representation of the plane as a Eigen::Vector4f.
[in] | plane_params | plane parameters, need not necessarily be normalized |
Definition at line 41 of file plane_clipper3D.hpp.
pcl::PlaneClipper3D< PointT >::~PlaneClipper3D | ( | ) | throw () [virtual] |
Definition at line 47 of file plane_clipper3D.hpp.
bool pcl::PlaneClipper3D< PointT >::clipLineSegment3D | ( | PointT & | point1, |
PointT & | point2 | ||
) | const [virtual] |
Implements pcl::Clipper3D< PointT >.
Definition at line 85 of file plane_clipper3D.hpp.
void pcl::PlaneClipper3D< PointT >::clipPlanarPolygon3D | ( | const std::vector< PointT > & | polygon, |
std::vector< PointT > & | clipped_polygon | ||
) | const [virtual] |
Implements pcl::Clipper3D< PointT >.
Definition at line 114 of file plane_clipper3D.hpp.
bool pcl::PlaneClipper3D< PointT >::clipPoint3D | ( | const PointT & | point | ) | const [virtual] |
interface to clip a single point
[in] | point | the point to check against |
Implements pcl::Clipper3D< PointT >.
Definition at line 76 of file plane_clipper3D.hpp.
void pcl::PlaneClipper3D< PointT >::clipPointCloud3D | ( | const pcl::PointCloud< PointT > & | cloud_in, |
std::vector< int > & | clipped, | ||
const std::vector< int > & | indices = std::vector< int >() |
||
) | const [virtual] |
interface to clip a point cloud
[in] | cloud_in | input point cloud |
[out] | clipped | indices of points that remain after clipping the input cloud |
[in] | indices | the indices of points in the point cloud to be clipped. |
Implements pcl::Clipper3D< PointT >.
Definition at line 168 of file plane_clipper3D.hpp.
pcl::Clipper3D< PointT > * pcl::PlaneClipper3D< PointT >::clone | ( | ) | const [virtual] |
polymorphic method to clone the underlying clipper with its parameters.
Implements pcl::Clipper3D< PointT >.
Definition at line 64 of file plane_clipper3D.hpp.
float pcl::PlaneClipper3D< PointT >::getDistance | ( | const PointT & | point | ) | const [protected] |
Definition at line 70 of file plane_clipper3D.hpp.
const Eigen::Vector4f & pcl::PlaneClipper3D< PointT >::getPlaneParameters | ( | ) | const |
return the current plane parameters
Definition at line 58 of file plane_clipper3D.hpp.
void pcl::PlaneClipper3D< PointT >::setPlaneParameters | ( | const Eigen::Vector4f & | plane_params | ) |
Set new plane parameters.
plane_params |
Definition at line 52 of file plane_clipper3D.hpp.
Eigen::Vector4f pcl::PlaneClipper3D< PointT >::plane_params_ [private] |
Definition at line 93 of file plane_clipper3D.h.