gaoxiang12 / slambook2

edition 2 of the slambook
MIT License
5.3k stars 1.99k forks source link

ch7 pose_estimation_3d3d.cpp argument naming #279

Open Tershire opened 1 year ago

Tershire commented 1 year ago

Line 37, the function prototype for bundleAdjustment,

void bundleAdjustment( const vector<Point3f> &points_3d, const vector<Point3f> &points_2d, Mat &R, Mat &t );

I believe that the argument name _points3d, _points2d is better to be changed to pts1, pts2 .

Thanks.