먼저 필요한 라이브러리를 import 해줍니다. import cv2 import numpy as np from numpy.matrixlib import matrix #점을 찍으면 좌표를 찾아주는 함수입니다. from utils import get_four_points 위의 좌표찍어주는 함수입니다. utils.py를 새로만들어 주세요 # Copyright 2017 BIG VISION LLC ALL RIGHTS RESERVED # # This code is made available to the students of # the online course titled "Computer Vision for Faces" # by Satya Mallick for personal non-commercial use. #..