改善形态学关闭

时间:2012-11-19 00:20:57

标签: image-processing opencv

我正在尝试使用形态学关闭操作使图像均匀亮,作为自适应阈值的前奏。我的方法是在关闭操作之后将图像中的每个像素除以该像素的值,然后标准化:

Imgproc.GaussianBlur(sudokuImage, sudokuImage, new Size(5,5), 0);
Mat kernel = Imgproc.getStructuringElement(Imgproc.MORPH_ELLIPSE, new Size(11,11));
Imgproc.morphologyEx(image, closedImage, Imgproc.MORPH_CLOSE, kernel);
Core.divide(image, closedImage, image);
Core.normalize(image, image, 0, 255, Core.NORM_MINMAX);

结果如下:

  • 左上角 - 原始图片
  • 右上角 - 高斯模糊后
  • 左下角 - 结算操作的结果
  • 右下 - 最终结果

enter image description here

我希望最终的图像不那么褪色,更像下面的图像(使用this post中的相同方法获得的图像)。我怎么能做到这一点?

enter image description here

1 个答案:

答案 0 :(得分:3)

也许问题在于您在链接的帖子上执行ont时在int上执行的分割步骤。