Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

OpenCV फ़ंक्शन का उपयोग करके एक वृत्त बनाएं सर्कल ()

इस लेख में, हम OpenCV फ़ंक्शन सर्कल () का उपयोग करके एक छवि पर एक वृत्त खींचेंगे।

मूल चित्र

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)

आउटपुट

OpenCV फ़ंक्शन का उपयोग करके एक वृत्त बनाएं सर्कल ()


  1. OpenCV का उपयोग करके एक छवि पर एक दीर्घवृत्त बनाएं

    इस कार्यक्रम में, हम OpenCV लाइब्रेरी का उपयोग करते हुए एक छवि पर एक दीर्घवृत्त खींचेंगे। हम इसके लिए 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

  1. OpenCV का उपयोग करके छवि पर एक रेखा खींचना

    इस कार्यक्रम में, हम OpenCV फ़ंक्शन लाइन () का उपयोग करके एक छवि पर एक सरल रेखा खींचेंगे। मूल चित्र एल्गोरिदम Step 1: Import cv2. Step 2: Read the image using imread(). Step 3: Get the dimensions of the image using the image.shape method. Step 4: Define starting point of the line. Step 5: Define t

  1. पायथन में ओपनसीवी का उपयोग करके समोच्च खोजें और ड्रा करें

    छवि विश्लेषण के उद्देश्य से हम Opencv (ओपन सोर्स कंप्यूटर विज़न लाइब्रेरी) पायथन लाइब्रेरी का उपयोग करते हैं। लाइब्रेरी का नाम जिसे opencv इंस्टाल करने के बाद इम्पोर्ट करना होता है cv2 है। नीचे दिए गए उदाहरण में हम एक छवि फ़ाइलों में मौजूद आकृति पाते हैं। आकृति हमें छवि में मौजूद आकृतियों की पहचान