반응형
# Python program to explain cv2.arrowedLine() method
# importing cv2
import cv2
# path
path = r'C:\Users\Atomix\Desktop\geeksforgeeks\geeks.png'
# Reading an image in default mode
image = cv2.imread(path)
# Window name in which image is displayed
window_name = 'Image'
# Start coordinate, here (0, 0)
# represents the top left corner of image
start_point = (0, 0)
# End coordinate
end_point = (200, 200)
# Green color in BGR
color = (0, 255, 0)
# Line thickness of 9 px
thickness = 9
# Using cv2.arrowedLine() method
# Draw a diagonal green arrow line
# with thickness of 9 px
image = cv2.arrowedLine(image, start_point, end_point,
color, thickness)
# Displaying the image
cv2.imshow(window_name, image)
출처 : https://www.geeksforgeeks.org/python-opencv-cv2-arrowedline-method/
반응형
'[====== Development ======] > Python' 카테고리의 다른 글
[Python] Contour 에서의 x,y 최대 최소좌표 구하기 (0) | 2021.08.27 |
---|---|
[Python] Show Image (0) | 2021.08.27 |
[Python] Text의 크기 구하기 (0) | 2021.08.24 |
Python array[::] 용법 (0) | 2021.08.23 |
[Python] OrderedDict 를 이용하여 json 만들기 (0) | 2021.07.15 |