35 #ifndef PCL_FILTERS_IMPL_BOX_CLIPPER3D_HPP
36 #define PCL_FILTERS_IMPL_BOX_CLIPPER3D_HPP
38 #include <pcl/filters/box_clipper3D.h>
40 template<
typename Po
intT>
42 : transformation_ (transformation)
48 template<
typename Po
intT>
51 setTransformation (rodrigues, translation, box_size);
55 template<
typename Po
intT>
60 template<typename
PointT>
void
63 transformation_ = transformation;
68 template<
typename Po
intT>
void
71 transformation_ = Eigen::Translation3f (translation) * Eigen::AngleAxisf(rodrigues.norm (), rodrigues.normalized ()) * Eigen::Scaling (box_size);
83 template<
typename Po
intT>
void
86 const Eigen::Vector4f& point = pointIn.getVector4fMap ();
87 pointOut.getVector4fMap () = transformation_ * point;
95 pointOut.x += (1 - point [3]) * transformation_.data () [ 9];
96 pointOut.y += (1 - point [3]) * transformation_.data () [10];
97 pointOut.z += (1 - point [3]) * transformation_.data () [11];
101 pointOut.x += transformation_.data () [ 9];
102 pointOut.y += transformation_.data () [10];
103 pointOut.z += transformation_.data () [11];
109 template<
typename Po
intT>
bool
112 Eigen::Vector4f point_coordinates (transformation_.matrix ()
113 * point.getVector4fMap ());
114 return (point_coordinates.array ().abs () <= 1).all ();
121 template<
typename Po
intT>
bool
167 throw std::logic_error (
"Not implemented");
175 template<
typename Po
intT>
void
179 clipped_polygon.clear ();
180 throw std::logic_error (
"Not implemented");
187 template<
typename Po
intT>
void
192 throw std::logic_error (
"Not implemented");
197 template<
typename Po
intT>
void
201 if (indices.empty ())
203 clipped.reserve (cloud_in.
size ());
204 for (std::size_t pIdx = 0; pIdx < cloud_in.
size (); ++pIdx)
205 if (clipPoint3D (cloud_in[pIdx]))
206 clipped.push_back (pIdx);
210 for (
const auto &index : indices)
211 if (clipPoint3D (cloud_in[index]))
212 clipped.push_back (index);
Implementation of a box clipper in 3D. Actually it allows affine transformations, thus any parallelep...
void transformPoint(const PointT &pointIn, PointT &pointOut) const
Clipper3D< PointT > * clone() const override
polymorphic method to clone the underlying clipper with its parameters.
bool clipLineSegment3D(PointT &from, PointT &to) const override
bool clipPoint3D(const PointT &point) const override
interface to clip a single point
BoxClipper3D(const Eigen::Affine3f &transformation)
Constructor taking an affine transformation matrix, which allows also shearing of the clipping area.
void clipPlanarPolygon3D(std::vector< PointT, Eigen::aligned_allocator< PointT > > &polygon) const override
void setTransformation(const Eigen::Affine3f &transformation)
Set the affine transformation.
~BoxClipper3D() noexcept override
virtual destructor
void clipPointCloud3D(const pcl::PointCloud< PointT > &cloud_in, Indices &clipped, const Indices &indices=Indices()) const override
interface to clip a point cloud
Base class for 3D clipper objects.
PointCloud represents the base class in PCL for storing collections of 3D points.
IndicesAllocator<> Indices
Type used for indices in PCL.
A point structure representing Euclidean xyz coordinates, and the RGB color.