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 #ifndef PCL_SURFACE_EAR_CLIPPING_H_
00039 #define PCL_SURFACE_EAR_CLIPPING_H_
00040
00041 #include <pcl/point_types.h>
00042 #include <pcl/surface/processing.h>
00043
00044 namespace pcl
00045 {
00046
00053 class PCL_EXPORTS EarClipping : public MeshProcessing
00054 {
00055 public:
00056 typedef boost::shared_ptr<EarClipping> Ptr;
00057 typedef boost::shared_ptr<const EarClipping> ConstPtr;
00058
00059 using MeshProcessing::input_mesh_;
00060 using MeshProcessing::initCompute;
00062 EarClipping () : MeshProcessing (), points_ ()
00063 {
00064 };
00065
00066 protected:
00068 pcl::PointCloud<pcl::PointXYZ>::Ptr points_;
00069
00071 bool
00072 initCompute ();
00073
00077 void
00078 performProcessing (pcl::PolygonMesh &output);
00079
00084 void
00085 triangulate (const Vertices& vertices, PolygonMesh& output);
00086
00090 float
00091 area (const std::vector<uint32_t>& vertices);
00092
00099 bool
00100 isEar (int u, int v, int w, const std::vector<uint32_t>& vertices);
00101
00108 bool
00109 isInsideTriangle (const Eigen::Vector2f& u,
00110 const Eigen::Vector2f& v,
00111 const Eigen::Vector2f& w,
00112 const Eigen::Vector2f& p);
00113
00114
00119 float
00120 crossProduct (const Eigen::Vector2f& p1, const Eigen::Vector2f& p2) const
00121 {
00122 return p1[0]*p2[1] - p1[1]*p2[0];
00123 }
00124
00125 };
00126
00127 }
00128
00129 #endif // #ifndef PCL_SURFACE_EAR_CLIPPING_H_