1

这是 Opencv 文档中的代码,它使用 FileStorage 编写 XML/YAML 文件:

#include <opencv2/opencv.hpp>
#include <time.h>
#include <iostream>

using namespace cv;
using namespace std;

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;
}

每当我运行此代码时,我总是会收到此错误:

OpenCV Error: Unspecified error (Incorrect element name É1Z) in unknown function , file c:\Users\vp\work\ocv\opencv\modules\core\src\persistence.cpp, line 5090

如何解决这个问题?

4

0 回答 0