해보고 싶었던 것이다. example로 통해서 연습을 해보고, 실제 custom을 해보도록하자. Example) Affine transformation - OpenCV 3.4 with python 3 Tutorial 14 - Pysource
python] import cv2 import numpy as np img = cv2.imread("grid.jpg") rows, cols, ch = img.shape cv2.circle(img, (83, 90)…pysource.com import cv2
import numpy as np img = cv2.imread("grid.jpg")
rows, cols, ch = img.shape cv2.circle(img, (83, 90), 5, (0, 0, 255), -1)
cv2.circle(img, (447, 90), 5, (0, 0, 255), -1)
cv2.circle(img, (83, 472), 5, (0, 0, 255), -1)