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

1 Ansicht (letzte 30 Tage)
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?

Antworten (2)

Image Analyst
Image Analyst am 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 am 19 Aug. 2019
how can i get count of total number of edges in an image? Is there any code for that?
  1 Kommentar
Image Analyst
Image Analyst am 19 Aug. 2019
If you like the edges that your algorithm gives you, then you can count them with bwlabel():
[~, numEdges] = bwlabel(binaryImage);

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by