import cv2 from google.colab.patches import cv2_imshow import numpy as np img_path = '/content/drive/My Drive/다핏문제/907/lena.jpg' 세 개의 꼭지점을 정해주면 getAffineTransform을 통해 이미지 변환을 할 수 있다. img = cv2.imread(img_path,1) height, width = img.shape[:2] controls = [] controls.append((0,0)) controls.append((0,height)) controls.append((width,0)) controls.append((width, height)) src = np.float32([list(co..