42 #include <pcl/features/feature.h>
49 template <
typename Po
intInT,
typename Po
intNT,
typename Po
intOutT = pcl::PFHRGBSignature250>
53 using Ptr = shared_ptr<PFHRGBEstimation<PointInT, PointNT, PointOutT> >;
54 using ConstPtr = shared_ptr<const PFHRGBEstimation<PointInT, PointNT, PointOutT> >;
65 : d_pi_ (1.0f / (2.0f * static_cast<float> (
M_PI)))
73 float &f1,
float &f2,
float &f3,
float &f4,
float &f5,
float &f6,
float &f7);
77 const pcl::Indices &indices,
int nr_split, Eigen::VectorXf &pfhrgb_histogram);
88 Eigen::VectorXf pfhrgb_histogram_;
91 Eigen::VectorXf pfhrgb_tuple_;
101 #ifdef PCL_NO_PRECOMPILE
102 #include <pcl/features/impl/pfhrgb.hpp>
Feature represents the base feature class.
shared_ptr< Feature< PointInT, PointOutT > > Ptr
std::string feature_name_
The feature name.
shared_ptr< const Feature< PointInT, PointOutT > > ConstPtr
Similar to the Point Feature Histogram descriptor, but also takes color into account.
bool computeRGBPairFeatures(const pcl::PointCloud< PointInT > &cloud, const pcl::PointCloud< PointNT > &normals, int p_idx, int q_idx, float &f1, float &f2, float &f3, float &f4, float &f5, float &f6, float &f7)
typename Feature< PointInT, PointOutT >::PointCloudOut PointCloudOut
void computeFeature(PointCloudOut &output) override
Abstract feature estimation method.
void computePointPFHRGBSignature(const pcl::PointCloud< PointInT > &cloud, const pcl::PointCloud< PointNT > &normals, const pcl::Indices &indices, int nr_split, Eigen::VectorXf &pfhrgb_histogram)
IndicesAllocator<> Indices
Type used for indices in PCL.