Commit eb341202 authored by oscar's avatar oscar

提交更新

parent ea5b4b3e
......@@ -221,7 +221,7 @@ const float ANGLE_CHANGE_MAX = 30 / 180 * _PI_;
double correct_angle(std::queue<point2d>& points)
{
if (m_points.size() < 5)
if (points.size() < 5)
return 0;
Eigen::MatrixXd X(5, 2); // 输入直线 y=x 上的三个点
// 坐标 (1, 1), (2, 2), (3, 3)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment