视觉SLAM十四讲遇到的问题
程序员文章站
2022-05-28 16:10:47
...
视觉SLAM十四讲遇到的问题
问题1 CH7:feature_extraction.cpp
代码:
cout<<"c0:"<<keypoints_1[0].pt<<keypoints_2[0].pt<<endl;
cout<<"c1:"<<keypoints_1[1].pt<<keypoints_2[1].pt<<endl;
cout<<"c2:"<<keypoints_1[2].pt<<keypoints_2[2].pt<<endl;
cout<<"c3:"<<keypoints_1[3].pt<<keypoints_2[3].pt<<endl;
输出结果:
c1:[138, 208][426, 160]
c2:[229, 174][377, 165]
c3:[229, 140][209, 160]
为什么特征点的坐标没有按照行或者列排序呢?
问题2 CH7:pose_estimation_3d2d.cpp
ushort d = d1.ptr<unsigned short> (int ( keypoints_1[m.queryIdx].pt.y )) [ int ( keypoints_1[m.queryIdx].pt.x ) ];
上面那段代码中为什么先y后x?
推荐阅读
-
小白学习视觉SLAM十四讲显示相机的位姿
-
在ROS上发布ORB_SLAM2的位姿信息过程及遇到的问题
-
slam 14讲学习过程中遇到的编译问题
-
SLAM14讲 在macOS下编译遇到的问题
-
slam14讲,李代数库Sophus遇到的问题及解决办法
-
slam14讲 编译安装googletest遇到的问题
-
视觉slam十四讲中第十一章libopencv_core问题:
-
《SLAM十四讲》中Sophus库的编译问题
-
Ubuntu16.04安装DBoW3库遇到的问题《视觉SLAM十四讲》第十二讲
-
《视觉SLAM 十四讲》第五讲 实践:拼接点云-编译遇到的terminate called after throwing an instance of 'pcl::IOException问题及解决方法