我需要使用相机获取和保存大量图像几个小时。我使用 BitFlow SDK 来处理相机采集和 OpenCV 主要用于显示和图像处理。我需要找到一种方法以紧凑、易于访问的形式保存所有这些数据(创建多页 tiff 文件是第一个目标,但几乎没有任何支持)。
无论如何,我现在尝试使用 OpenCV 的 FileStorage 类将多个图像保存在一个 YAML 文件中,但没有取得太大的成功。我可以成功地从我创建的 YAML 文件中写入然后读取一个图像,但是一旦我尝试使用 << 运算符将多个 Mat 对象放入文件中,我就会收到以下错误:
BFBi_test.exe 中 0x74E2C42D 处的第一次机会异常:Microsoft C++ 异常:内存位置 0x0045F6B4 处的 cv::Exception。BFBi_test.exe 中 0x74E2C42D 处的第一次机会异常:Microsoft C++ 异常:内存位置 0x0045F6B4 处的 cv::Exception。BFBi_test.exe 中 0x74E2C42D 处未处理的异常:Microsoft C++ 异常:内存位置 0x0045F6B4 处的 cv::Exception。
我的部分代码:
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include "resource.h"
#include "SequenceInterface.h"
#include "opencv2/core/core.hpp"
#include "persistence.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
using namespace std;
using namespace cv;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
// Control variables
BFU32 numBuffers = 10; // Allocate 10 buffers
BFU32 setupOptions = 0; // Use default setup options.
FileStorage firstImg("FirstImage.yml", FileStorage::WRITE);
FileStorage secondImg("SecondImage.yml", FileStorage::WRITE);
cout << "Creating instance of sequence interface." << endl;
SequenceInterface board(0, numBuffers, 0);
PBFU32* pBufferArray= board.getBufferArrayPointers();
Mat test(Size(1024, 1024),CV_8UC1, (void *)pBufferArray[0], (size_t)1024);
Mat test2(Size(1024, 1024),CV_8UC1, (void *)pBufferArray[1], (size_t)1024);
// -- Acquisition done here ---
...
...
// -- End of acquisition --
firstImg<<"firsttest"<< test;
firstImg<< "secondtest" << test2; // Runtime error on this line;
firstImg.release();
}
如果我将 test2 写入 secondImg,则不会出现问题。我还尝试将随机字符串对象添加到 firstImg 并且那里也没有问题。切换到 XML 也没有改变任何东西。YAML 文件是否有最大大小,这意味着我的图像对于该用途来说太大了?