使用cv :: Mat.submat opencv时出错

时间:2015-03-26 09:44:56

标签: android c++ opencv

我正在尝试使用opencv submat函数。基本上我的代码如下:

#include "opencv2/core/core.hpp"

Mat img1 = imread(img1Path, CV_LOAD_IMAGE_COLOR);
Mat img2 = imread(img2Path, CV_LOAD_IMAGE_COLOR);

Rect ROI = Rect(x ,y, width, height);
addWeighted(img1.submat(ROI), 0.5, img2, 0.5, 0.0, img1.submat(ROI));

当我尝试使用Android Studio进行编译时,显示以下编译错误:

Error:error: 'class cv::Mat' has no member named 'submat'

从我的结尾,我包含submat的必要标题,我搜索了很多,但我不知道为什么编译器会给出这个编译错误。

任何帮助将不胜感激。

谢谢

1 个答案:

答案 0 :(得分:3)

你可能会混淆c ++和java api:

的java:

Mat roi = m.submat(rect);

C ++:

Mat roi = m(rect);