OpenCV cv::Mat without copying and weird memory ownership
Recently I found an interesting OpenCV behaviour.OpenCV cv::Mat is built to be easy to use. It will allocate, free and reallocate it's own internal data. That's fine for most of the uses, but what if ...