38 #ifndef PCL_SEGMENTATION_PLANAR_REGION_H_
39 #define PCL_SEGMENTATION_PLANAR_REGION_H_
49 template <
typename Po
intT>
71 centroid_ = region.centroid;
72 covariance_ = region.covariance;
73 count_ = region.count;
74 contour_ = polygon.contour;
75 coefficients_ = polygon.coefficients;
88 PlanarRegion (
const Eigen::Vector3f& centroid,
const Eigen::Matrix3f& covariance,
unsigned count,
90 const Eigen::Vector4f& coefficients) :
94 covariance_ = covariance;
97 coefficients_ = coefficients;
104 std::vector<bool> contour_labels_;
107 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
111 #endif //PCL_SEGMENTATION_PLANAR_REGION_H_