博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OpenCV Error: Assertion failed (data0.dims <= 2 && type == 5 && K > 0) in cv::kmeans
阅读量:6289 次
发布时间:2019-06-22

本文共 436 字,大约阅读时间需要 1 分钟。

OpenCV Error: Assertion failed (data0.dims <= 2 && type == 5 && K > 0) in cv::kmeans 

报错:

数据类型不对,转换一下就可以了。 all_descriptors .convertTo(all_descriptors, CV_32F);

加入在 Mat vocabulary = bowTrainer.cluster(allDescriptors); 之前就可以了

allDescriptors.convertTo(allDescriptors, CV_32F);

BOWKMeansTrainer bowTrainer(wordCount, tc, retries, flags);

Mat vocabulary = bowTrainer.cluster(allDescriptors);

转载于:https://www.cnblogs.com/rjjhyj/p/10729201.html

你可能感兴趣的文章