gpt4 book ai didi

android - OpenCV 错误 : Unsupported format or combination of formats (type=16)

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:39 25 4
gpt4 key购买 nike

我有一个使用 BOW + SVM 方法进行对象检测的 Android 应用程序。我使用 DynamicSURF 进行特征检测,使用 OpponentSURF 进行描述符提取,使用 FlannBased 匹配器。我正在获取 RGBA 格式的帧,所以我正在将其转换为 BGR。

当我尝试计算特征时,问题就来了。出现以下错误:

03-08 23:31:07.965: E/cv::error()(1578): OpenCV Error: Unsupported format or combination of formats (type=16
03-08 23:31:07.965: E/cv::error()(1578): ) in void cv::flann::buildIndex_(void*&, const cv::Mat&, const cv::flann::IndexParams&, const Distance&) [with Distance = cvflann::L2<float>, IndexType = cvflann::Index<cvflann::L2<float> >], file /home/reports/ci/slave_desktop/50-SDK/opencv/modules/flann/src/miniflann.cpp, line 315

这是我的代码:

    Mat matBGR;
cvtColor(matRGBA, matBGR, CV_RGBA2BGR);

const Ptr<FeatureDetector> detector = FeatureDetector::create("DynamicSURF");
const Ptr<DescriptorExtractor> descriptors = DescriptorExtractor::create("OpponentSURF");
const Ptr<DescriptorMatcher> matcher = DescriptorMatcher::create("FlannBased");
BOWImgDescriptorExtractor bowDE(descriptors, matcher);

FileStorage fileStorage(dictionaryPathString + dictionaryNameString, FileStorage::READ);

Mat dictionary;

fileStorage["dictionary"] >> dictionary;
fileStorage.release();
bowDE.setVocabulary(dictionary);

Mat features;
vector<KeyPoint> keypoints;

detector->detect(matBGR, keypoints);
KeyPointsFilter::retainBest(keypoints, 1700);
bowDE.compute(matBGR, keypoints, features);

您知道导致此问题的原因吗?我搜索了解决方案,但没有找到解决方案。

最佳答案

愚蠢的错误.. 事实证明我为 BOW 词典使用了错误的文件。我放了正确的文件,错误消失了。始终检查此类内容,这可以节省您的时间!

关于android - OpenCV 错误 : Unsupported format or combination of formats (type=16),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28929884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com