Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วาดวงกลมโดยใช้ฟังก์ชัน Circle() ของ OpenCV


ในบทความนี้ เราจะวาดวงกลมบนรูปภาพโดยใช้ฟังก์ชัน Circle() ของ OpenCV

ภาพต้นฉบับ

วาดวงกลมโดยใช้ฟังก์ชัน Circle() ของ OpenCV

อัลกอริทึม

Step 1: Import OpenCV.
Step 2: Define the radius of circle.
Step 3: Define the center coordinates of the circle.
Step 4: Define the color of the circle.
Step 5: Define the thickness.
Step 6: Pass the above arguments into cv2.circle() along with the image.
Step 7: Display the output.

โค้ดตัวอย่าง

import cv2
image = cv2.imread('testimage.jpg')
radius = 100
center = (350, 175)
color = (255,255,0)
thickness = 15
image = cv2.circle(image, center, radius, color, thickness)
cv2.imshow('Circle', image)

ผลลัพธ์

วาดวงกลมโดยใช้ฟังก์ชัน Circle() ของ OpenCV