我正在尝试使用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
的必要标题,我搜索了很多,但我不知道为什么编译器会给出这个编译错误。
任何帮助将不胜感激。
谢谢
答案 0 :(得分:3)
你可能会混淆c ++和java api:
的java:
Mat roi = m.submat(rect);
C ++:
Mat roi = m(rect);