猿问

什么相当于 OpenCV2 中使用 python3 的 cvCreateMat 函数

我正在将一段用 c/cpp 编写的旧代码转换为 python。它使用 cvCreateMat 函数。从这个链接我相信 OpenCV2 不支持 cvCreateMat 函数。我不知道如何使用 OpenCV2/numpy 做到这一点。或者我需要的只是python中的以下行。

cv::Mat a = cvCreateMat(3*numberOfMatrices, 6,CV_64FC1);


翻阅古今
浏览 188回答 1
1回答

四季花海

我认为这应该做// the third 3 is so it has 3 dimensions which i suppose what you needsize = 3*numberOfMatrices, 6img = np.zeros(size, dtype=np.float64)这是创建的正确格式
随时随地看视频慕课网APP

相关分类

Python
我要回答