What is the best way to draw multi-color segmented circle using OpenCV like below?
What I found, it can be:
- Using cv.fillPoly Many points are required for an arcs accurate drawing, the number of segments is several hundred;
- Using cv.line by rotating the line in a circle;
- Using cv.line by rotating whole image like in this similar case.

