0

我正在尝试将一系列 Mat 元素存储在 xml 文件中。这是我的代码草图

Mat SEQ[3];
int nFrame = 0;
while (1) {
    ...
    ...
    SEQ[nFrame] = dataAt_nFrame;
    if (nFrame == 2) break;
    }

FileStorage fs("test.xml", FileStorage::WRITE);
fs << "dataSequence" << SEQ;
fs.release();

cvReleaseCapture(&video1);

FileStorage fs2("test.xml", FileStorage::READ);
Mat SEQ2[3];
fs2["sequence"] >> SEQ2;

//.... here i want print out the values in order to check if are the same i've written...
fs2.release();

while(1) 分析视频,对于每一帧,我获得一个“dataAt_nFrame”,它是一个 Mat。我想将这些数据的整个序列存储在数组 SEQ 中(如果您可以建议我更喜欢 Mat [] 类型的替代方案),然后能够读取它们并为每个帧号选择每个 Mat。

4

2 回答 2

0

我建议你使用字节数组。是一个关于如何将 cv::Mat 转换为字节数组的好例子。

于 2015-01-23T11:22:03.200 回答
0

您应该尝试链接sequences/unnamed collection中的示例。下面的代码虽然没有使用它。

#include <string>

std::string toString( int count ) {
    return "frame"+std::to_string(count);
}

int nFrame = 0;
FileStorage fs("test.xml", FileStorage::WRITE);
while (1) {
    //...
    //...
    fs << toString(nFrame) << dataAt_nFrame;
}

//saving number of frames in file
fs << "frameCount" << nFrame;
fs.release();

//....

int count=0;
FileStorage fs2("test.xml", FileStorage::READ);

//reading number of frames from file
fs2["frameCount"] >> count;
std::vector<Mat> SEQ2(count);

while( --count >= 0 ) {
    //reading individual Mat
    fs2[ toString(count) ] >> SEQ2[count];
}

//...
fs2.release();
于 2015-01-23T12:14:14.047 回答