Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef PCL_RECOGNITION_GEOMETRIC_CONSISTENCY_H_
00041 #define PCL_RECOGNITION_GEOMETRIC_CONSISTENCY_H_
00042
00043 #include <pcl/recognition/cg/correspondence_grouping.h>
00044 #include <pcl/point_cloud.h>
00045
00046 namespace pcl
00047 {
00048
00054 template<typename PointModelT, typename PointSceneT>
00055 class GeometricConsistencyGrouping : public CorrespondenceGrouping<PointModelT, PointSceneT>
00056 {
00057 public:
00058 typedef pcl::PointCloud<PointModelT> PointCloud;
00059 typedef typename PointCloud::Ptr PointCloudPtr;
00060 typedef typename PointCloud::ConstPtr PointCloudConstPtr;
00061
00062 typedef typename pcl::CorrespondenceGrouping<PointModelT, PointSceneT>::SceneCloudConstPtr SceneCloudConstPtr;
00063
00065 GeometricConsistencyGrouping ()
00066 : gc_threshold_ (3)
00067 , gc_size_ (1.0)
00068 , found_transformations_ ()
00069 {}
00070
00071
00075 inline void
00076 setGCThreshold (int threshold)
00077 {
00078 gc_threshold_ = threshold;
00079 }
00080
00085 inline int
00086 getGCThreshold () const
00087 {
00088 return (gc_threshold_);
00089 }
00090
00095 inline void
00096 setGCSize (double gc_size)
00097 {
00098 gc_size_ = gc_size;
00099 }
00100
00105 inline double
00106 getGCSize () const
00107 {
00108 return (gc_size_);
00109 }
00110
00117 bool
00118 recognize (std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > &transformations);
00119
00127 bool
00128 recognize (std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > &transformations, std::vector<pcl::Correspondences> &clustered_corrs);
00129
00130 protected:
00131 using CorrespondenceGrouping<PointModelT, PointSceneT>::input_;
00132 using CorrespondenceGrouping<PointModelT, PointSceneT>::scene_;
00133 using CorrespondenceGrouping<PointModelT, PointSceneT>::model_scene_corrs_;
00134
00136 int gc_threshold_;
00137
00139 double gc_size_;
00140
00142 std::vector<Eigen::Matrix4f, Eigen::aligned_allocator<Eigen::Matrix4f> > found_transformations_;
00143
00149 void
00150 clusterCorrespondences (std::vector<Correspondences> &model_instances);
00151 };
00152 }
00153
00154 #ifdef PCL_NO_PRECOMPILE
00155 #include <pcl/recognition/impl/cg/geometric_consistency.hpp>
00156 #endif
00157
00158 #endif // PCL_RECOGNITION_GEOMETRIC_CONSISTENCY_H_