How can I draw a circle on an image with gradient colors(something like Gaussian circle) in python using OpenCV? The circle should have a specific size, (x, y) and color.
Asked
Active
Viewed 1,624 times
0
-
Something like [this](https://stackoverflow.com/questions/49829783/draw-a-gradual-change-ellipse-in-skimage/49848093#49848093)? – Dan Mašek Apr 21 '19 at 18:22
-
If gaussian circle behave like a 2D gaussian, you can just adapt the color of the points inside the circle depending on their distance to the center. – Pierre Baret Apr 23 '19 at 07:20