41 #include <pcl/features/feature.h>
67 template <
typename Po
intInT,
typename Po
intNT,
typename Po
intOutT>
78 using Ptr = shared_ptr<DifferenceOfNormalsEstimation<PointInT, PointNT, PointOutT> >;
79 using ConstPtr = shared_ptr<const DifferenceOfNormalsEstimation<PointInT, PointNT, PointOutT> >;
98 input_normals_small_ = normals;
108 input_normals_large_ = normals;
129 compute (PointCloudOut &) {}
132 PointCloudNConstPtr input_normals_small_;
134 PointCloudNConstPtr input_normals_large_;
138 #ifdef PCL_NO_PRECOMPILE
139 #include <pcl/features/impl/don.hpp>
A Difference of Normals (DoN) scale filter implementation for point cloud data.
void setNormalScaleLarge(const PointCloudNConstPtr &normals)
Set the normals calculated using a larger search radius (scale) for the DoN operator.
DifferenceOfNormalsEstimation()
Creates a new Difference of Normals filter.
bool initCompute() override
Initialize for computation of features.
shared_ptr< DifferenceOfNormalsEstimation< PointInT, PointNT, PointOutT > > Ptr
void computeFeature(PointCloudOut &output) override
Computes the DoN vector for each point in the input point cloud and outputs the vector cloud to the g...
void setNormalScaleSmall(const PointCloudNConstPtr &normals)
Set the normals calculated using a smaller search radius (scale) for the DoN operator.
shared_ptr< const DifferenceOfNormalsEstimation< PointInT, PointNT, PointOutT > > ConstPtr
~DifferenceOfNormalsEstimation() override=default
Feature represents the base feature class.
std::string feature_name_
The feature name.
shared_ptr< PointCloud< PointNT > > Ptr
shared_ptr< const PointCloud< PointNT > > ConstPtr