我正在尝试使用形态学关闭操作使图像均匀亮,作为自适应阈值的前奏。我的方法是在关闭操作之后将图像中的每个像素除以该像素的值,然后标准化:
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);
结果如下:
我希望最终的图像不那么褪色,更像下面的图像(使用this post中的相同方法获得的图像)。我怎么能做到这一点?
答案 0 :(得分:3)
也许问题在于您在链接的帖子上执行ont时在int上执行的分割步骤。