我想从图像(Mat格式)获得一个子图像(由下面的红框限定的图像)。我如何使用opencv4 android?
答案 0 :(得分:0)
您可以执行以下操作,
转换为gray scale。
Threshold灰色。
使用boundbox裁剪ROI,如
Rect R; //bounding box for contour
Mat src;//source image
Mat cropped=src(R); //Crop the image
注意:您应该将所有这些转换为Java或使用JNI直接使用C ++。