how are number of edges differ from one edge detecting method to another?

1 view (last 30 days)
on basis of what parameter edges can be identified in an imge? and what makes different in number of edges from each edge detecting methods like canny,sobel and fuzzy?

Answers (2)

Image Analyst
Image Analyst on 16 Aug 2019
They use different algorithm so of course they're not going to agree on every single pixel. You can look up the precise algorithms online if you want - no sense in me explaining them, or copying and pasting the descriptions here, when you can just look them up.

jagadeesh gondela
jagadeesh gondela on 19 Aug 2019
how can i get count of total number of edges in an image? Is there any code for that?
  1 Comment
Image Analyst
Image Analyst on 19 Aug 2019
If you like the edges that your algorithm gives you, then you can count them with bwlabel():
[~, numEdges] = bwlabel(binaryImage);

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!