使用python实现图像对比度加强

对单张图像进行图像对比度加强:python from PIL import Image from PIL import ImageEnhance img = Image.open('./0h/FGF2.tif') img.show() #对比度加强 enh_con = ImageEnhance.Contrast(img) contrast = 1.5 img_contrasted
相关文章
相关标签/搜索