1

我有以下代码:

#include<opencv2/core/core.hpp>
#include<opencv2/highgui/highgui.hpp>
int main()
{
    cv::VideoCapture capture(0);
    cv::Mat frame;
    capture>>frame;
    cv::Mat img = frame.clone();
    cv::Mat img2 = frame; // here still the refcount stays null in xcode.
    return 0;
}

然后

frame.refcount ==NULL; // could be wrong
img->refcount == 1; // good
img2.refcount ==NULL; // certainly wrong, should be pointing to 2, at the same address as frame.refcount.

一切似乎都工作正常,但我调查了一些事情,结果发现 refcountframe只是一个空指针(并且在 之后保持不变clone()),而其他垫子(比如它的克隆)的 refcount 指向一个 int >= 0。

这是什么原因?

4

1 回答 1

1

根据文档

clone()返回矩阵的深层副本,即复制数据。

所以没有增加是有道理的refcount。有关此主题的更多信息,请查看内存管理和引用计数

于 2012-11-15T18:29:19.187 回答