Assertion failed ((type == CV

发布时间:2024-12-10 20:24

使用行业标准格式,如CV或Resume #生活知识# #生活指南# #职场建议# #简历投递#

Enjoy lab and life 于 2018-10-14 19:47:39 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

在做视觉里程计时,之间套用高博slam14讲的方法时报错:
OpenCV Error: Assertion failed ((type == CV_8U && dtype == CV_32S) || dtype == CV_32F) in batchDistance
原因:Since SIFT and SURF return a detectorType() of CV32F (=float) you cannot use any Hamming-distance as matcher. Hamming-distance works only for binary feature-types like ORB, FREAK, … I guess it would be possible if you’d convert them to CV8U. Afaik for SIFT this should be fairly easy since they are actually already normalized for the range 0-255 (double check that before you do it). However, I doubt that this is useful at all, use L2 norm for those and you should be fine.
orb描述子深度是CV_8U,可以用汉明距离的,而sift,surf,为CV32F直接套用汉明匹配则报错。

使用特征提取过程得到的特征描述符(descriptor)数据类型有的是float类型的,比如说SurfDescriptorExtractor,SiftDescriptorExtractor,有的是uchar类型的,比如说有ORB,BriefDescriptorExtractor。

对应float类型的匹配方式有:FlannBasedMatcher,BruteForce<L2>,BruteForce<SL2>,BruteForce<L1>。

对应uchar类型的匹配方式有:BruteForce,BruteForce。所以ORB和BRIEF特征描述子只能使用BruteForce匹配法。

https://blog.csdn.net/holybin/article/details/48776949
https://blog.csdn.net/abc8730866/article/details/70146826

网址:Assertion failed ((type == CV https://www.yuejiaxmz.com/news/view/436889

相关内容

碎点篇——opencv边缘检测报错
Manifest merger failed with multiple errors, see logs问题处理
Failed to extract native libraries, res=
Type
gradle sync failed CreateProcess error=267 目录无效
input type=“time”
5A快充type
数组传值input type=“checked”
script type=“text/JavaScript”是什么
Hive加载数据报相关权限问题

随便看看