所以我处理图像以找到我想要的对象。结果我得到了这样的图像。
Imgproc.drawContours(subImage, contours, i, new Scalar(r, g, b));
Core.circle(subImage, point, 10, new Scalar(255, 0, 0));
现在我需要模糊红色圆圈的内容。模糊代码。
Imgproc.GaussianBlur(mask, mask, new Size(55, 55), BLUR_STR);
我知道他们的中心点和半径。我想我必须从类型为submat
的{{1}}中取subImage
,但我还没有办法仅使用中心点和半径从图像中获取圆形子图。
有人知道吗?
当使用@Micka想法时,我会使用蒙版获得大量背景噪音。
Mat