In [1]:from Custom.mediahelper import show_image_with_pil # 개발자 정의 모듈9. 이미지 회전¶방향 회전¶In [2]:import cv2img = cv2.imread('../Media/images/img.png')rotate_90 = cv2.rotate(img, cv2.ROTATE_90_CLOCKWISE) # 시계 방향 90도 회전rotate_180 = cv2.rotate(img, cv2.ROTATE_180) # 180도 회전rotate_reverse_90 = cv2.rotate(img, cv2.ROTATE_90_COUNTERCLOCKWISE) # 시계 반대 방향 90도 회전cv2.imshow('img',img)cv2.imshow('rotate_90', ro..