Detecting nonzero matrix elements in a rectangle
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Michael
el 5 de Feb. de 2015
Comentada: Michael
el 5 de Feb. de 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.
0 comentarios
Respuesta aceptada
David Young
el 5 de Feb. de 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.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!