You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add a method to draw circle annotations on the images?
I was testing circle detection in images and surprisingly there's no way to overlay a circle on the original image and the closest I can get is drawing a bunch of point annotations along a circle.
The text was updated successfully, but these errors were encountered:
In case you need a workaround, there is some rudimentary functionality for drawing circles in the ImageDraw.jl package. There currently isn't any documentation for this package, so you will have to peek at the source code docstrings to see how to use it: https://github.com/JuliaImages/ImageDraw.jl/blob/master/src/circle2d.jl
A slightly more "heavy" solution is to use Makie.jlhttps://github.com/JuliaPlots/Makie.jl plot package and use the scatter function to plot a circle marker over your image.
Is it possible to add a method to draw circle annotations on the images?
I was testing circle detection in images and surprisingly there's no way to overlay a circle on the original image and the closest I can get is drawing a bunch of point annotations along a circle.
The text was updated successfully, but these errors were encountered: