我正在尝试使用形态关闭操作使图像均匀明亮,作为自适应阈值的前奏。我的方法是在关闭操作后将图像中的每个像素除以该像素的值,然后进行归一化:
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);
结果如下:
- 左上 - 原始图像
- 右上角 - 高斯模糊后
- 左下 - 关闭操作的结果
- 右下 - 最终结果
我希望最终图像不那么褪色,更像下面的图像(使用本文中看起来相同的方法获得)。我怎样才能做到这一点?