"Blending out" 图像中有噪点?

"Blending out" noise in images?

不知道这个有没有正式的名字

我正在尝试使用 Python 在像素级别对图片进行一些颜色分析,但问题是有时这里和那里的像素点可能具有截然不同的颜色和搞乱分析。

有没有办法 "smooth the picture out" 让这些小的不规则现象消失,让颜色在各自区域内分布得更均匀?

检查 MedianFilter in the ImageFilter 模块。

corrected_image = original_image.filter(ImageFilter.MedianFilter(7))

您可能需要调整过滤器大小。 (我这里设置为7。)