图片剪切

# 100 -> 200 x
# 100 -> 300 y
import cv2

img = cv2.imread('image0.jpg', 1)
imgInfo = img.shape
dst = img[100:200, 100:300]

cv2.imshow('image', dst)
cv2.waitKey(0)

  

 

 

 

posted @ 2019-07-19 21:04  青衫客36  阅读(86)  评论(0编辑  收藏  举报