3

我将相机图像捕获到图像中。我从图像中选择对象并跟踪对象。但我想将选择保存到文件中,因为我不想每次都选择对象。这是我的选择部分;

Mat image;
Rect selection;

selection.x = MIN(x, origin.x);
selection.y = MIN(y, origin.y);
selection.width = abs(x - origin.x);
selection.height = abs(y - origin.y);
selection &= Rect(0, 0, image.cols, image.rows);

如何保存选择或如何首次选择对象?谢谢

4

2 回答 2

1

您不能Rect直接使用存储 a FileStorage,但可以存储xywidth的整数值height

写入文件:

Rect rect;
// ... init your Rect

FileStorage fs("rect.yml", FileStorage::WRITE);
if( fs.isOpened() ){
    fs << "x" << rect.x << "y" << rect.y;
    fs << "width" << rect.width << "height" << rect.height;
    fs.release();
}
else cout << "Error: can not save the rect\n";

从文件中读取

Rect rect;

FileStorage fs("rect.yml", FileStorage::READ);
if( fs.isOpened() ){
    fs["x"] >> rect.x;
    fs["y"] >> rect.y;
    fs["width"] >> rect.width;
    fs["height"] >> rect.height;
}
else cout << "Error: can not load the rect\n";
于 2013-09-24T08:34:03.583 回答
-1

尝试使用 OpenCV 文件存储来保存它自己的矩形。或者,如果您想保存图片的选定部分,则使用cv::Mat roi 构造函数,然后使用cv::imwrite保存。

于 2013-04-03T08:59:34.110 回答