opencv-python 繪製圖像直方圖及直方圖均衡化

1. 繪製圖像的直方圖   下面的程序給出瞭如何繪製一幅圖像總體的直方圖和每一個通道的直方圖html #-*- coding:utf-8 -*- import cv2 from matplotlib import pyplot as plt def whole_hist(image): ''' 繪製整幅圖像的直方圖 ''' plt.hist(image.ravel(), 256, [0,
相關文章
相關標籤/搜索