打开CV存储文件错误:

openCV Storagefile Error :

本文关键字:错误 存储文件 CV 打开      更新时间:2023-10-16

我正在尝试从.yaml文件加载矩阵,但opencv给了我以下错误:

OpenCV 错误:解析错误 (myFile.yaml(1):有效的 xml 应以 ') 开头 OpenCV 错误:解析错误(myFile.yaml(1):在未知函数中,标签应以"<"开头>)

这是我的写入存储文件,工作正常:

cv::FileStorage fs("myFile.yaml", cv::FileStorage::APPEND);   
while(counter<_imgPtrVector.size()){    
    unsigned char* _pointer=(unsigned char*)_imgPtrVector.at(counter);
    cv::Mat _matrixImage(cv::Size( width,height), CV_8UC1,_pointer , cv::Mat::AUTO_STEP);       
    fs <<"Matrix"<<_matrixImage;
    counter++;
}

但是当我想从同一文件加载数据时,我遇到了这些错误; 这是从存储文件中读取的代码:

cv::FileStorage f("myFile.yaml", cv::FileStorage::READ );
cv::Mat mat(cv::Size( width,height), CV_8UC1);  
if(f.isOpened()){
    cv::FileNode n = f["Matrix"];
    if (n.type() != cv::FileNode::SEQ){
     std::cout << "error!";
    }
    f["Matrix"] >>  mat; 
}

问题可能是您总是附加到现有文件。因此,您可能需要将代码更改为:

FileStorage fs("test.yml", FileStorage::WRITE);

这将在每次程序运行时重新创建文件。

OpenCV 文档有一个关于如何使用 XML/YAML 持久性编写的示例,非常清楚:

#include "opencv2/opencv.hpp"
#include <time.h>
using namespace cv;
int main(int, char** argv)
{
    FileStorage fs("test.yml", FileStorage::WRITE);
    fs << "frameCount" << 5;
    time_t rawtime; time(&rawtime);
    fs << "calibrationDate" << asctime(localtime(&rawtime));
    Mat cameraMatrix = (Mat_<double>(3,3) << 1000, 0, 320, 0, 1000, 240, 0, 0, 1);
    Mat distCoeffs = (Mat_<double>(5,1) << 0.1, 0.01, -0.001, 0, 0);
    fs << "cameraMatrix" << cameraMatrix << "distCoeffs" << distCoeffs;
    fs << "features" << "[";
    for( int i = 0; i < 3; i++ )
    {
        int x = rand() % 640;
        int y = rand() % 480;
        uchar lbp = rand() % 256;
        fs << "{:" << "x" << x << "y" << y << "lbp" << "[:";
        for( int j = 0; j < 8; j++ )
            fs << ((lbp >> j) & 1);
        fs << "]" << "}";
    }
    fs << "]";
    fs.release();
    return 0;
}

还有另一个例子展示了如何阅读