PCL RANSAC splits multiple planes (method 2)

I. Overview

  In the previous article, I have written the method of RANSAC fitting and splitting multiple planes , which is realized when saving the results stringstream. In the environment where C++11 is popularized, this method is a bit complicated. This article improves it.

2. Code implementation

#include <iostream>
#include <pcl/io/pcd_io.h>
#include <pcl/ModelCoefficients.h>               // 模型系数

Guess you like

Origin blog.csdn.net/qq_36686437/article/details/127158775