在Opencv中使用FileStorage时出现运行时错误

时间:2012-12-12 19:42:02

标签: visual-c++ opencv opencvdotnet

以下是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

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

问题很可能是由您尝试打印到.xml文件的行引起的。您应该将.xml文件的名称放在&lt;&lt;&lt;&lt;标志。 例如。:     fs << "test" << 5;