Note

OpenCV (13) - 텍스트 그리기 본문

Deep Learning/Computer Vision

OpenCV (13) - 텍스트 그리기

알 수 없는 사용자 2022. 6. 7. 00:04
728x90

텍스트 그리기

cv2.putText(image, text, position, font_type, font_scale, color)

position : 텍스트가 출력될 위치
font_type : 글씨체
font_scale : 글씨 크기 가중치

import cv2
import numpy as np
import matplotlib.pyplot as plt

image = np.full((512, 512, 3), 255, np.uint8)
image = cv2.putText(image, 'Flask', (0, 200), cv2.FONT_ITALIC, 2, (255, 0, 0))

plt.imshow(image)
plt.show()

'Deep Learning > Computer Vision' 카테고리의 다른 글

OpenCV (15) - Contour 사각형 외곽 찾기  (0) 2022.06.09
OpenCV (14) - Contour  (0) 2022.06.08
OpenCV (12) - 다각형 그리기  (0) 2022.06.06
OpenCV (11) - 원 그리기  (0) 2022.06.05
OpenCV (10) - 사각형 그리기  (0) 2022.06.04
Comments