在openCV圈内模糊图像

时间:2015-04-14 11:23:59

标签: java opencv

所以我处理图像以找到我想要的对象。结果我得到了这样的图像。 enter image description here

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想法时,我会使用蒙版获得大量背景噪音。 enter image description here

Mat

0 个答案:

没有答案