opencv學習5——圖像的簡單裁剪

1、python 1.裁剪實質:將裁剪區域存放新數組並展現數組 # cut extent: height: 200~500, width:200~1200 import cv2 img = cv2.imread('image01.jpg',1) dstImg = img[200:500,200:1200] cv2.imshow('image',dstImg) cv2.waitKey(0)
相關文章
相關標籤/搜索