【发布时间】:2016-12-30 17:54:23
【问题描述】:
我试图为一组点找到最合适的平面,我使用 SVD 计算ax+by+cz+d=0 给出的平面方程。
我已经实现了 SVD 并成功地获得了飞机的法线,但我无法计算 d。
经过一番挖掘,我用等式中计算的质心代入计算d,但我得到的值不正确。我确定这是一个不正确的值,因为我正在将其与 RANSAC 方法进行比较。
我的代码实现如下
pcl::ModelCoefficients normal_extractor::plane_est_svd(pcl::PointCloud<pcl::PointXYZ>::ConstPtr point_cloud)
{
Eigen::MatrixXd points_3D(3,point_cloud->width);
//assigning the points from point cloud to matrix
for (int i=0;i<point_cloud->width;i++)
{
points_3D(0,i) = point_cloud->at(i).x;
points_3D(1,i) = point_cloud->at(i).y;
points_3D(2,i) = point_cloud->at(i).z;
}
// calcaulating the centroid of the pointcloud
Eigen::MatrixXd centroid = points_3D.rowwise().mean();
//std::cout<<"The centroid of the pointclouds is given by:\t"<<centroid<<std::endl;
//subtract the centroid from points
points_3D.row(0).array() -= centroid(0);
points_3D.row(1).array() -= centroid(1);
points_3D.row(2).array() -= centroid(2);
//calculate the SVD of points_3D matrix
Eigen::JacobiSVD<Eigen::MatrixXd> svd(points_3D,Eigen::ComputeFullU);
Eigen::MatrixXd U_MAT = svd.matrixU();
//std::cout<<"U matrix transpose is:"<<U_MAT<<std::endl<<std::endl<<"U matrix is:"<<svd.matrixU()<<std::endl;
/*********************************************************************************************
* caculating d by sybstituting the centroid back in the quation
* aCx+bCy+cCz = -d
********************************************************************************************/
//double d = -((U_MAT(0,2)*points_3D(0,1))+ (U_MAT(1,2)*points_3D(1,1)) + (U_MAT(1,2)*points_3D(1,2)));
double d = -((U_MAT(0,2)*centroid(0))+ (U_MAT(1,2)*centroid(1)) + (U_MAT(1,2)*centroid(2)));
pcl::ModelCoefficients normals;
normals.values.push_back(U_MAT(0,2));
normals.values.push_back(U_MAT(1,2));
normals.values.push_back(U_MAT(2,2));
normals.values.push_back(d);
return(normals);
}
我得到的结果是
RANSAC 方法:
a = -0.0584306 b = 0.0358117 c = 0.997649 d = -0.161604
SVD方法:
a = 0.0584302 b = -0.0357721 c = -0.99765 d = 0.00466139
从结果来看,我相信法线计算得很好(虽然方向相反),但是d的值是不正确的。我不确定我哪里出错了。非常感谢任何帮助。
提前致谢..
【问题讨论】:
-
如果
d计算不正确,请检查您使用的公式。最后一个词 (U_MAT(1,2)*centroid(2)) 是否不正确(而不是U_MAT(2, 2))? -
是的,当然,非常感谢。出于某种原因,我选择性地对此视而不见。 @1201ProgramAlarm 再次感谢您。