
算法
叶轮回
北漂小硕,谨以此博客纪念我写的学习之路。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
算法——O(n)=2n快速排序
一种快速排序 MapLocation swap; unsigned int i = 0; while (i < polygon_cells.size() - 1) { if (polygon_cells[i].x > polygon_cells[i + 1].x) { swap = polygon_...原创 2019-06-19 00:07:20 · 520 阅读 · 0 评论 -
BundleAdjustment-最小投影误差
void bundleAdjustment ( const vector< Point3f > points_3d, const vector< Point2f > points_2d, const Mat& K, Mat& R, Mat& t ){ // 初始化g2o typedef g2o::Bl...原创 2019-09-11 11:22:00 · 449 阅读 · 0 评论