In [1]:from Custom.mediahelper import show_image_with_pil # 개발자 정의 모듈7. 이미지 자르기¶영역을 잘라서 새로운 윈도우(창)에 표시In [2]:import cv2img = cv2.imread('../Media/images/img.png')crop = img[150:380, 220:450] # img[세로 범위, 가로범위]print(img.shape)print(crop.shape)cv2.imshow('img',img)cv2.imshow('crop',crop)cv2.waitKey(0)cv2.destroyAllWindows()show_image_with_pil(img, 'img')show_image_with_pil(crop, 'crop')(640, 640, ..