To draw Ellipse
image_ret=cv_ellipse(image,center,axes,angle,startAngle,endAngle,color,thickness,linetype)
Input Image -> Must be a np.ndarray
Center of the ellipse. -> Must be a constant ex: [5,5]
Length of axes -> [major axis length, minor axis length] ex:[100,50]
angle is the angle of rotation of ellipse in anti-clockwise direction
startAngle denotes the starting of ellipse arc measured in clockwise direction from major axis. i.e. giving values 0 and 360 gives the full ellipse
endAngle denotes the ending of ellipse arc measured in clockwise direction from major axis. i.e. giving values 0 and 360 gives the full ellipse
Color of ellipse-> Must be a constant ex : [255,0,0]
Thickness of Ellipse outline
Type of line-> 1 for antialiased type of line , 4 for 4-connected line, 8 for 8 connected line
Returned Image
To draw Ellipse
This function is used to draw ellipse in an image