Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

OpenCV를 사용하여 이미지에 타원 그리기

<시간/>

이 프로그램에서는 OpenCV 라이브러리를 사용하여 이미지에 타원을 그립니다. OpenCV 함수 ellipse()를 동일한 용도로 사용할 것입니다.

원본 이미지

OpenCV를 사용하여 이미지에 타원 그리기

알고리즘

Step 1: Import cv2.
Step 2: Read the image using imread().
Step 3: Set the center coordinates.
Step 4: Set the axes length.
Step 5: Set the angle.
Step 6: Set start and end angle.
Step 6: Set the color.
Step 7: Set the thickness.
Step 8: Draw the ellipse by passing the above parameters in the cv2.ellipse function along with the original image.
Step 9: Display the final output.

예시 코드

import cv2
image = cv2.imread('testimage.jpg')
center_coordinates = (120, 100)

axesLength = (100, 50)
angle = 0
startAngle = 0
endAngle = 360
color = (0, 0, 255)
thickness = 5
image = cv2.ellipse(image, center_coordinates, axesLength, angle, startAngle, endAngle, color, thickness)

cv2.imshow('Ellipse', image)

출력

OpenCV를 사용하여 이미지에 타원 그리기