Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近将我的系统升级到 OpenCV 4.0,但我无法更新我的一些其他代码以使其兼容。我正在尝试使用 cvCreateMat 创建 cv:Mat 的共享指针。这是我最初为 OpenCV 3.4 准备的。有人知道如何在 4.0 中执行此操作吗?
cv::Ptr<CvMat> _pts(cvCreateMat(4, 4, CV_32FC2));
从OpenCV 文档:
CvMat现在已经过时了;考虑Mat改用。
CvMat
Mat