Point Cloud Library (PCL)  1.11.1-dev
rgb_plane_coefficient_comparator.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2012, Willow Garage, Inc.
6  *
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of the copyright holder(s) nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  *
37  *
38  */
39 
40 #pragma once
41 
42 #include <pcl/segmentation/boost.h>
43 #include <pcl/segmentation/plane_coefficient_comparator.h>
44 
45 namespace pcl
46 {
47  /** \brief RGBPlaneCoefficientComparator is a Comparator that operates on plane coefficients,
48  * for use in planar segmentation. Also takes into account RGB, so we can segmented different colored co-planar regions.
49  * In conjunction with OrganizedConnectedComponentSegmentation, this allows planes to be segmented from organized data.
50  *
51  * \author Alex Trevor
52  */
53  template<typename PointT, typename PointNT>
55  {
56  public:
59 
61  using PointCloudNPtr = typename PointCloudN::Ptr;
63 
64  using Ptr = shared_ptr<RGBPlaneCoefficientComparator<PointT, PointNT> >;
65  using ConstPtr = shared_ptr<const RGBPlaneCoefficientComparator<PointT, PointNT> >;
66 
71 
72  /** \brief Empty constructor for RGBPlaneCoefficientComparator. */
74  : color_threshold_ (50.0f)
75  {
76  }
77 
78  /** \brief Constructor for RGBPlaneCoefficientComparator.
79  * \param[in] plane_coeff_d a reference to a vector of d coefficients of plane equations. Must be the same size as the input cloud and input normals. a, b, and c coefficients are in the input normals.
80  */
81  RGBPlaneCoefficientComparator (shared_ptr<std::vector<float> >& plane_coeff_d)
82  : PlaneCoefficientComparator<PointT, PointNT> (plane_coeff_d), color_threshold_ (50.0f)
83  {
84  }
85 
86  /** \brief Destructor for RGBPlaneCoefficientComparator. */
87 
89  {
90  }
91 
92  /** \brief Set the tolerance in color space between neighboring points, to be considered part of the same plane.
93  * \param[in] color_threshold The distance in color space
94  */
95  inline void
96  setColorThreshold (float color_threshold)
97  {
98  color_threshold_ = color_threshold * color_threshold;
99  }
100 
101  /** \brief Get the color threshold between neighboring points, to be considered part of the same plane. */
102  inline float
104  {
105  return (color_threshold_);
106  }
107 
108  /** \brief Compare two neighboring points, by using normal information, euclidean distance, and color information.
109  * \param[in] idx1 The index of the first point.
110  * \param[in] idx2 The index of the second point.
111  */
112  bool
113  compare (int idx1, int idx2) const override
114  {
115  float dx = (*input_)[idx1].x - (*input_)[idx2].x;
116  float dy = (*input_)[idx1].y - (*input_)[idx2].y;
117  float dz = (*input_)[idx1].z - (*input_)[idx2].z;
118  float dist = std::sqrt (dx*dx + dy*dy + dz*dz);
119  int dr = (*input_)[idx1].r - (*input_)[idx2].r;
120  int dg = (*input_)[idx1].g - (*input_)[idx2].g;
121  int db = (*input_)[idx1].b - (*input_)[idx2].b;
122  //Note: This is not the best metric for color comparisons, we should probably use HSV space.
123  float color_dist = static_cast<float> (dr*dr + dg*dg + db*db);
124  return ( (dist < distance_threshold_)
125  && ((*normals_)[idx1].getNormalVector3fMap ().dot ((*normals_)[idx2].getNormalVector3fMap () ) > angular_threshold_ )
126  && (color_dist < color_threshold_));
127  }
128 
129  protected:
131  };
132 }
pcl
Definition: convolution.h:46
pcl::RGBPlaneCoefficientComparator::RGBPlaneCoefficientComparator
RGBPlaneCoefficientComparator(shared_ptr< std::vector< float > > &plane_coeff_d)
Constructor for RGBPlaneCoefficientComparator.
Definition: rgb_plane_coefficient_comparator.h:81
pcl::PlaneCoefficientComparator::PointCloudNPtr
typename PointCloudN::Ptr PointCloudNPtr
Definition: plane_coefficient_comparator.h:62
pcl::RGBPlaneCoefficientComparator::color_threshold_
float color_threshold_
Definition: rgb_plane_coefficient_comparator.h:130
pcl::PointCloud
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition: distances.h:55
pcl::PointXYZRGB
A point structure representing Euclidean xyz coordinates, and the RGB color.
Definition: point_types.hpp:628
pcl::Comparator::ConstPtr
shared_ptr< const Comparator< PointT > > ConstPtr
Definition: comparator.h:62
pcl::RGBPlaneCoefficientComparator::setColorThreshold
void setColorThreshold(float color_threshold)
Set the tolerance in color space between neighboring points, to be considered part of the same plane.
Definition: rgb_plane_coefficient_comparator.h:96
pcl::PlaneCoefficientComparator::distance_threshold_
float distance_threshold_
Definition: plane_coefficient_comparator.h:205
pcl::RGBPlaneCoefficientComparator::compare
bool compare(int idx1, int idx2) const override
Compare two neighboring points, by using normal information, euclidean distance, and color informatio...
Definition: rgb_plane_coefficient_comparator.h:113
pcl::PlaneCoefficientComparator::PointCloudNConstPtr
typename PointCloudN::ConstPtr PointCloudNConstPtr
Definition: plane_coefficient_comparator.h:63
pcl::PlaneCoefficientComparator::normals_
PointCloudNConstPtr normals_
Definition: plane_coefficient_comparator.h:202
pcl::RGBPlaneCoefficientComparator::getColorThreshold
float getColorThreshold() const
Get the color threshold between neighboring points, to be considered part of the same plane.
Definition: rgb_plane_coefficient_comparator.h:103
pcl::Comparator
Comparator is the base class for comparators that compare two points given some function.
Definition: comparator.h:54
pcl::Comparator::PointCloudConstPtr
typename PointCloud::ConstPtr PointCloudConstPtr
Definition: comparator.h:59
pcl::PointCloud< PointNT >::Ptr
shared_ptr< PointCloud< PointNT > > Ptr
Definition: point_cloud.h:406
pcl::RGBPlaneCoefficientComparator::RGBPlaneCoefficientComparator
RGBPlaneCoefficientComparator()
Empty constructor for RGBPlaneCoefficientComparator.
Definition: rgb_plane_coefficient_comparator.h:73
pcl::PointCloud< PointNT >::ConstPtr
shared_ptr< const PointCloud< PointNT > > ConstPtr
Definition: point_cloud.h:407
pcl::PlaneCoefficientComparator::angular_threshold_
float angular_threshold_
Definition: plane_coefficient_comparator.h:204
pcl::RGBPlaneCoefficientComparator::~RGBPlaneCoefficientComparator
~RGBPlaneCoefficientComparator()
Destructor for RGBPlaneCoefficientComparator.
Definition: rgb_plane_coefficient_comparator.h:88
pcl::Comparator::Ptr
shared_ptr< Comparator< PointT > > Ptr
Definition: comparator.h:61
pcl::RGBPlaneCoefficientComparator
RGBPlaneCoefficientComparator is a Comparator that operates on plane coefficients,...
Definition: rgb_plane_coefficient_comparator.h:54
pcl::PlaneCoefficientComparator
PlaneCoefficientComparator is a Comparator that operates on plane coefficients, for use in planar seg...
Definition: plane_coefficient_comparator.h:55