Detect circles with a min/max radius in an image using Hough Transform #2445
-
How can I use ImageSharp to apply Hough Transform to detect circles that match a given radius in an image? I need to get the X, Y and radius coordinates of all detected circles so that I can then crop the found images. Has anyone done this or have any pointers? |
Beta Was this translation helpful? Give feedback.
Answered by
antonfirsov
May 1, 2023
Replies: 1 comment 1 reply
-
Computer Vision algorithms are out of scope for ImageSharp, you would need to use another library like EmguCV or opencvsharp for this. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
smillerk2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Computer Vision algorithms are out of scope for ImageSharp, you would need to use another library like EmguCV or opencvsharp for this.