Learn Before
Concept
Circle Method
This method requires an img object, center coordinate and radius, color and line thickness.
img = cv2.circle(frame, (100, 100), 60, (0,0,255), -1)
This would fill in the circle since the thickness is specified as -1. The circle method will construct a circle at the coordinate value passed that goes r units away in all directions.
0
1
Updated 2021-06-26
Tags
Python Programming Language
Data Science