Effacer les filtres
Effacer les filtres

Detecting nonzero matrix elements in a rectangle

1 vue (au cours des 30 derniers jours)
Michael
Michael le 5 Fév 2015
Commenté : Michael le 5 Fév 2015
I have an image that I performed Sobel Edge Detection on. I am planning on drawing rectangles on top of the edge detected image and counting the number of nonzero matrix elements within those rectangles using the nnz command.
My question is how exactly do I use the nnz command to work only within those rectangles? I have the 4 corner coordinates of the rectangle already, and I will be performing this calculation on at at least 5 rectangles within the image.
Thank you for any help in advance.

Réponse acceptée

David Young
David Young le 5 Fév 2015
Say your edge array is E and opposite corners of a rectangle are at integer coordinates (x0,y0) and (x1,y1), with the former nearer the top left of the image. Then you could use this
nEdgePixels = nnz(E(y0:y1, x0:x1));
Note that I'm using the common convention that X refers to the column subscript in the array and Y refers to the row subscript.
  1 commentaire
Michael
Michael le 5 Fév 2015
Exactly what I wanted. Thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by