2020
10-05
10-05
使用opencv中匹配点对的坐标提取方式
在opencv中,特征检测、描述、匹配都有集成的函数。vector<DMatch>bestMatches;用来存储得到的匹配点对。那么如何提取出其中的坐标呢?intindex1,index2;for(inti=0;i<bestMatches.size();i++)//将匹配的特征点坐标赋给point{index1=bestMatches.at(i).queryIdx;index2=bestMatches.at(i).trainIdx;cout<<keyImg1.at(index1).pt.x<<""<<keyImg1.at(index1).pt.y<<""<<keyImg2.at(index2)....
继续阅读 >