天天看點

OpenCV讀取灰階圖像

在寫OpenCV程式時,發現通過image = imread(“the path of a image”);的方式讀入的灰階圖檔都是3通道,并且每個通道都完全相同,可以通過列印image.channels()進行測試。

為了正确地讀入灰階圖像,需要通過image = imread(“the path of a image”, IMREAD_GRAYSCALE);的方式來實作,同樣列印image.channels()發現讀入的圖檔隻有單通道。