python 簡單圖像處理(7) 計算直方圖

好啦。現在我們來介紹下圖像的直方圖 說白了,直方圖就是統計圖像中像素點爲某值的個數 對於8位灰度圖來說,顏色有256級,統計每級的個數 然後把結果用圖表表示出來就可以了 看看程序吧 import cv def Hist(image): a = [0] * 256 w = image.width h = image.height iHist = cv.CreateImage(( 256 , 256
相關文章
相關標籤/搜索