Point Cloud Library (PCL)
1.12.1
Toggle main menu visibility
Loading...
Searching...
No Matches
pcl
features
pfhrgb.h
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Point Cloud Library (PCL) - www.pointclouds.org
5
* Copyright (c) 2011, Alexandru-Eugen Ichim
6
* Copyright (c) 2012-, Open Perception, Inc.
7
*
8
* All rights reserved.
9
*
10
* Redistribution and use in source and binary forms, with or without
11
* modification, are permitted provided that the following conditions
12
* are met:
13
*
14
* * Redistributions of source code must retain the above copyright
15
* notice, this list of conditions and the following disclaimer.
16
* * Redistributions in binary form must reproduce the above
17
* copyright notice, this list of conditions and the following
18
* disclaimer in the documentation and/or other materials provided
19
* with the distribution.
20
* * Neither the name of the copyright holder(s) nor the names of its
21
* contributors may be used to endorse or promote products derived
22
* from this software without specific prior written permission.
23
*
24
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35
* POSSIBILITY OF SUCH DAMAGE.
36
*
37
* $Id$
38
*/
39
40
#pragma once
41
42
#include <pcl/features/feature.h>
43
44
namespace
pcl
45
{
46
template
<
typename
Po
int
InT,
typename
Po
int
NT,
typename
Po
int
OutT = pcl::PFHRGBSignature250>
47
class
PFHRGBEstimation
:
public
FeatureFromNormals
<PointInT, PointNT, PointOutT>
48
{
49
public
:
50
using
Ptr
= shared_ptr<PFHRGBEstimation<PointInT, PointNT, PointOutT> >;
51
using
ConstPtr
= shared_ptr<const PFHRGBEstimation<PointInT, PointNT, PointOutT> >;
52
using
PCLBase
<PointInT>
::indices_
;
53
using
Feature
<PointInT, PointOutT>
::feature_name_
;
54
using
Feature
<PointInT, PointOutT>
::surface_
;
55
using
Feature
<PointInT, PointOutT>
::k_
;
56
using
Feature
<PointInT, PointOutT>
::search_parameter_
;
57
using
FeatureFromNormals
<PointInT, PointNT, PointOutT>
::normals_
;
58
using
PointCloudOut
=
typename
Feature<PointInT, PointOutT>::PointCloudOut
;
59
60
61
PFHRGBEstimation
()
62
: nr_subdiv_ (5), d_pi_ (1.0f / (2.0f * static_cast<float> (
M_PI
)))
63
{
64
feature_name_
=
"PFHRGBEstimation"
;
65
}
66
67
bool
68
computeRGBPairFeatures
(
const
pcl::PointCloud<PointInT>
&cloud,
const
pcl::PointCloud<PointNT>
&normals,
69
int
p_idx,
int
q_idx,
70
float
&f1,
float
&f2,
float
&f3,
float
&f4,
float
&f5,
float
&f6,
float
&f7);
71
72
void
73
computePointPFHRGBSignature
(
const
pcl::PointCloud<PointInT>
&cloud,
const
pcl::PointCloud<PointNT>
&normals,
74
const
pcl::Indices
&indices,
int
nr_split, Eigen::VectorXf &pfhrgb_histogram);
75
76
protected
:
77
void
78
computeFeature
(
PointCloudOut
&output)
override
;
79
80
private
:
81
/** \brief The number of subdivisions for each angular feature interval. */
82
int
nr_subdiv_;
83
84
/** \brief Placeholder for a point's PFHRGB signature. */
85
Eigen::VectorXf pfhrgb_histogram_;
86
87
/** \brief Placeholder for a PFHRGB 7-tuple. */
88
Eigen::VectorXf pfhrgb_tuple_;
89
90
/** \brief Placeholder for a histogram index. */
91
int
f_index_[7];
92
93
/** \brief Float constant = 1.0 / (2.0 * M_PI) */
94
float
d_pi_;
95
};
96
}
97
98
#ifdef PCL_NO_PRECOMPILE
99
#include <pcl/features/impl/pfhrgb.hpp>
100
#endif
pcl::FeatureFromNormals< PointInT, PointNT, pcl::PFHRGBSignature250 >::FeatureFromNormals
FeatureFromNormals()
Definition
feature.h:332
pcl::FeatureFromNormals< PointInT, PointNT, pcl::PFHRGBSignature250 >::normals_
PointCloudNConstPtr normals_
Definition
feature.h:355
pcl::Feature
Feature represents the base feature class.
Definition
feature.h:107
pcl::Feature< PointInT, pcl::PFHRGBSignature250 >::search_parameter_
double search_parameter_
Definition
feature.h:237
pcl::Feature::PointCloudOut
pcl::PointCloud< PointOutT > PointCloudOut
Definition
feature.h:124
pcl::Feature< PointInT, pcl::PFHRGBSignature250 >::k_
int k_
Definition
feature.h:243
pcl::Feature< PointInT, pcl::PFHRGBSignature250 >::feature_name_
std::string feature_name_
Definition
feature.h:223
pcl::Feature< PointInT, pcl::PFHRGBSignature250 >::surface_
PointCloudInConstPtr surface_
Definition
feature.h:231
pcl::PointCloudOut
pcl::PCLBase
PCL base class.
Definition
pcl_base.h:70
pcl::PCLBase< PointInT >::indices_
IndicesPtr indices_
Definition
pcl_base.h:150
pcl::PFHRGBEstimation::Ptr
shared_ptr< PFHRGBEstimation< PointInT, PointNT, PointOutT > > Ptr
Definition
pfhrgb.h:50
pcl::PFHRGBEstimation::PFHRGBEstimation
PFHRGBEstimation()
Definition
pfhrgb.h:61
pcl::PFHRGBEstimation::PointCloudOut
typename Feature< PointInT, PointOutT >::PointCloudOut PointCloudOut
Definition
pfhrgb.h:58
pcl::PFHRGBEstimation::computeFeature
void computeFeature(PointCloudOut &output) override
Definition
pfhrgb.hpp:135
pcl::PFHRGBEstimation::ConstPtr
shared_ptr< const PFHRGBEstimation< PointInT, PointNT, PointOutT > > ConstPtr
Definition
pfhrgb.h:51
pcl::PFHRGBEstimation::computePointPFHRGBSignature
void computePointPFHRGBSignature(const pcl::PointCloud< PointInT > &cloud, const pcl::PointCloud< PointNT > &normals, const pcl::Indices &indices, int nr_split, Eigen::VectorXf &pfhrgb_histogram)
Definition
pfhrgb.hpp:64
pcl::PointCloud
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition
point_cloud.h:173
pcl
Definition
convolution.h:46
pcl::computeRGBPairFeatures
PCL_EXPORTS bool computeRGBPairFeatures(const Eigen::Vector4f &p1, const Eigen::Vector4f &n1, const Eigen::Vector4i &colors1, const Eigen::Vector4f &p2, const Eigen::Vector4f &n2, const Eigen::Vector4i &colors2, float &f1, float &f2, float &f3, float &f4, float &f5, float &f6, float &f7)
pcl::Indices
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition
types.h:133
M_PI
#define M_PI
Definition
pcl_macros.h:201