gpt4 book ai didi

c++ - 使用 opencv 通过 Filestorage 保存时出错

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:37:04 24 4
gpt4 key购买 nike

我正在尝试从 BOW 算法中保存词汇。下面是我的代码。

FileStorage fs; 
fs.open("Vocabulary.xml", FileStorage::WRITE);
Mat vocabulary = bow.cluster();
fs << vocabulary ;
fs.release();
FileStorage fs2;
fs2.open("Vocabulary.xml", FileStorage::READ);
fs2 ["Vocabulary"] >> vocabulary ;
dextract.setVocabulary(vocabulary);

cv::Mat training_mat(num_img , dictionarySize,CV_32FC1);
cv::Mat labels(num_img,1,CV_32FC1);

CvSVM svm;
svm.load( "trainsvm.xml" );

这是我的错误:

OpenCV Error: Unspecified error (No element name has been given) in unknown function , file c:\opencv\2.4.4\build\include\opencv2\core\operations.hpp , line 2908

最佳答案

您没有在文件中设置词汇表的名称,试试这个:

fs << "Vocabulary" << vocabulary ;

关于c++ - 使用 opencv 通过 Filestorage 保存时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19123682/

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