Note
OpenCV (9) - 직선 그리기 본문
728x90
cv2.line(image, start, end, color, thickness)
start : 시작 좌표(2차원)
end : 종료 좌표(2차원)
thickness : 선의 두께
(255, 0, 0) = (R, G, B)
import cv2
import numpy as np
import matplotlib.pyplot as plt
image = np.full((512, 512, 3), 255, np.uint8)
image = cv2.line(image, (0, 0), (255, 255), (255, 0, 0) , 3)
plt.imshow(image)
plt.show()
'Deep Learning > Computer Vision' 카테고리의 다른 글
OpenCV (11) - 원 그리기 (0) | 2022.06.05 |
---|---|
OpenCV (10) - 사각형 그리기 (0) | 2022.06.04 |
OpenCV (8) - Tracker (0) | 2022.06.02 |
OpenCV (7) - 적응 임계점 처리하기 (0) | 2022.06.01 |
OpenCV (6) - 임계점 처리하기 (0) | 2022.05.31 |
Comments