opencv 转换图像为灰度
生活随笔
收集整理的這篇文章主要介紹了
opencv 转换图像为灰度
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import cv2
import numpy as npif __name__ == "__main__":img_path = "lu.jpeg"img = cv2.imread(img_path)#獲取圖片的寬和高width,height = img.shape[:2][::-1]#將圖片縮小便于顯示觀看img_resize = cv2.resize(img,(int(width*0.5),int(height*0.5)),interpolation=cv2.INTER_CUBIC)
# cv2.imshow("img",img_resize)print("img_reisze shape:{}".format(np.shape(img_resize)))#讀取灰度圖img_gray = cv2.imread(img_path,cv2.IMREAD_GRAYSCALE)cv2.imwrite('hd.jpeg', img_gray)#將圖片縮小便于顯示觀看
# img_gray = cv2.resize(img_gray,
# (int(width*0.5),int(height*0.5)),interpolation=cv2.INTER_CUBIC)cv2.imshow("img_gray",img_gray)print("img_gray shape:{}".format(np.shape(img_gray)))cv2.waitKey()
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀
總結
以上是生活随笔為你收集整理的opencv 转换图像为灰度的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: opencv 霍夫曼变换 直线提取
- 下一篇: opencv 边缘检测