Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试调整二维条码。因此,我有一个仅包含条形码边缘的参考图像。
第二张图片是试管上的条形码 。
我想使用功能将真实世界图像的角点投影到参考图像的角点。
到目前为止,代码有效,但即使使用交叉检查,BFMatcher() 找到的对应关系也不准确。
有没有办法使用某种平均距离和方向阈值来过滤匹配?所以每个特征都必须有这样的距离和相似的方向。我目前正在使用
匹配 = 排序(匹配,键 = lambda x:x.distance)