cv::Mat.refcount 在 OpenCV 3.0 中缺失

cv::Mat.refcount Missing in OpenCV 3.0

以下在 OpenCV 2.4.9 中有效:

cv::Mat TestMat(3,3,CV_32F);
int RefCount = *TestMat.refcount;

如何在 OpenCV 3.0.0b 中完成同样的事情?

int RefCount = TestMat.u ? (*TestMat.u->refcount) : 0;

引用计数器隐藏在 UMatData u 字段中。请参阅 https://github.com/jet47/opencv/blob/master/modules/core/include/opencv2/core/mat.hpp#L455 了解 UMatData 声明。