1. 首页
  2. 移动开发
  3. Flash
  4. python 对一幅灰度图像进行直方图均衡化

python 对一幅灰度图像进行直方图均衡化

上传者: 2020-12-17 04:28:52上传 PDF文件 134.79KB 热度 20次
from PIL import Image from pylab import * from numpy import * def histeq(im,nbr_bins = 256): """对一幅灰度图像进行直方图均衡化""" #计算图像的直方图 #在numpy中,也提供了一个计算直方图的函数histogram(),第一个返回的是直方图的统计量,第二个为每个bins的中间值 imhist,bins = histogram(im.flatten(),nbr_bins,normed= True) cdf = imhist.cumsum() # cdf = 255.0 *
用户评论