plane_fitting_ransac.cpp
Go to the documentation of this file.
2
4
5
6using namespace visionx;
7
8
9#define DEFINE_fitPlaneRansac_PointT(PointT) \
10 std::optional<tools::PlaneFittingResult> tools::fitPlaneRansac( \
11 pcl::PointCloud<PointT>::Ptr cloud, \
12 double distanceThreshold, \
13 pcl::PointIndices::Ptr indices) \
14 { \
15 return fitPlaneRansac<PointT>(cloud, distanceThreshold, indices); \
16 }
17
19 DEFINE_fitPlaneRansac_PointT(pcl::PointXYZRGBA) DEFINE_fitPlaneRansac_PointT(pcl::PointXYZRGBL)
20
21
22#undef DEFINE_fitPlaneRansac_PointT
ArmarX headers.
#define DEFINE_fitPlaneRansac_PointT(PointT)