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

1 vue (au cours des 30 derniers jours)
jagadeesh gondela
jagadeesh gondela le 16 Août 2019
Commenté : Image Analyst le 19 Août 2019
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?

Réponses (2)

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

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by