Python中利用OpenCV批量處理圖片

目的:實現圖像的批量讀取、裁剪、寫入指定的文件夾python import cv2 import glob i = 0 for jpgfile in glob.glob(r'G:\Image\*.jpg'): image = cv2.imread(jpgfile) print(image.shape) #print(image.shape[0]) #height(rows) of ima
相關文章
相關標籤/搜索