我想在编码中创建一个蒙版,我有一个Rect和一个输入图像,所以如何初始化蒙版。
答案 0 :(得分:1)
掩码通常是CV_8U垫。
这对我有用:
Mat mask = new Mat(src.size(), CvType.CV_8U, new Scalar(0)); // This will contain the mask
Imgproc.rectangle(mask, point1, point2, new Scalar(1), Core.FILLED); // Draw on the mask
我希望它可以帮助你:)