38 #ifndef PCL_FILTERS_IMPL_SHADOW_POINTS_FILTER_H_
39 #define PCL_FILTERS_IMPL_SHADOW_POINTS_FILTER_H_
41 #include <pcl/filters/shadowpoints.h>
46 template<
typename Po
intT,
typename NormalT>
void
49 assert (input_normals_ !=
nullptr);
50 output.
resize (input_->size ());
51 if (extract_removed_indices_)
52 removed_indices_->resize (input_->size ());
56 for (std::size_t i = 0; i < input_->size (); i++)
58 const NormalT &normal = (*input_normals_)[i];
59 const PointT &pt = (*input_)[i];
60 const float val = std::abs (normal.normal_x * pt.x + normal.normal_y * pt.y + normal.normal_z * pt.z);
62 if ( (val >= threshold_) ^ negative_)
66 if (extract_removed_indices_)
67 (*removed_indices_)[ri++] = i;
70 PointT &pt_new = output[cp++] = pt;
71 pt_new.x = pt_new.y = pt_new.z = user_filter_value_;
77 removed_indices_->resize (ri);
83 template<
typename Po
intT,
typename NormalT>
void
86 assert (input_normals_ !=
nullptr);
87 indices.resize (input_->size ());
88 if (extract_removed_indices_)
89 removed_indices_->resize (indices_->size ());
93 for (
const auto& idx : (*indices_))
95 const NormalT &normal = (*input_normals_)[idx];
96 const PointT &pt = (*input_)[idx];
98 float val = std::abs (normal.normal_x * pt.x + normal.normal_y * pt.y + normal.normal_z * pt.z);
100 if ( (val >= threshold_) ^ negative_)
102 else if (extract_removed_indices_)
103 (*removed_indices_)[z++] = idx;
106 removed_indices_->resize (z);
109 #define PCL_INSTANTIATE_ShadowPoints(T,NT) template class PCL_EXPORTS pcl::ShadowPoints<T,NT>;
PointCloud represents the base class in PCL for storing collections of 3D points.
void resize(std::size_t count)
Resizes the container to contain count elements.
std::uint32_t width
The point cloud width (if organized as an image-structure).
std::uint32_t height
The point cloud height (if organized as an image-structure).
void applyFilter(PointCloud &output) override
Sample of point indices into a separate PointCloud.
IndicesAllocator<> Indices
Type used for indices in PCL.
A point structure representing normal coordinates and the surface curvature estimate.
A point structure representing Euclidean xyz coordinates, and the RGB color.