VOOZH about

URL: https://www.geeksforgeeks.org/python/find-circles-and-ellipses-in-an-image-using-opencv-python/

⇱ Find Circles and Ellipses in an Image using OpenCV | Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Find Circles and Ellipses in an Image using OpenCV | Python

Last Updated : 4 Jan, 2023

To identify circles, ellipses, or in general, any shape in which the pixels are connected we use the SimpleBlobDetector() function of OpenCV. In non-technical terms, a blob is understood as a thick liquid drop. Here, we are going to call all shapes a blob. Our task is to detect and recognize whether the blob is a circle or not.

OpenCV provides a convenient way to detect blobs and filter them based on different characteristics. There are various different parameters that control the identification process and the results. The important parameters used for this project are: 

  • Filter by Area - This is to avoid any identification of any small dots present in the image that can be wrongly detected as a circle. 

👁 Image

  • Filter by Circularity - This helps us to identify, shapes that are more similar to a circle. 
Circularity = . 

A true circle has a circularity of 1, a square has a circularity near 78%. 

👁 Image

  • Filter by Convexity - Concavity in general, destroys the circularity. More is the convexity, the closer it is to a close circle. 

👁 Image

  • Filter by Inertia - Objects similar to a circle has larger inertial.E.g. for a circle, this value is 1, for an ellipse it is between 0 and 1, and for a line it is 0. To filter by inertia ratio, set filterByInertia = 1, and set, 0 <= minInertiaRatio <= 1 and maxInertiaRatio (<=1 ) appropriately. 

👁 Image

Below is the code for identifying Circles:  

Output: 

👁 Image


 

Comment