openCV基礎,基於Python

1. 圖像的讀取,顯示和保存 首先在python中安裝opencv, 在終端命令行輸入pip install opencv-python 即可。 #導入cv2的庫 import cv2 as cv #圖像讀取 img = cv.imread(「img.jpg」) #顯示圖像 cv.imshow(「img」, img) #使圖像持久顯示在桌面上 cv.waitKey(0) cv.destroyAll
相關文章
相關標籤/搜索