Borrar filtros
Borrar filtros

How to find the minimum and maximum non-zero indice of matrix?

3 visualizaciones (últimos 30 días)
Assume:
a = [0 0 0 0 0 0
0 0 0 0 0 0
0 0 1 1 0 0
0 1 0 0 1 0
0 1 0 0 1 0
0 0 1 1 0 0
0 0 0 0 0 0]
Obviously, the minimum non-zero column indice is 2, max is 5
the minimum non-zero row indice is 3, max is 6

Respuesta aceptada

Image Analyst
Image Analyst el 29 de Dic. de 2016
Not sure what you're after. If you really want the min and max row and column only , then you can do what the others showed you, using find(), min(), and max().
If you want the min and max row and column because you want the bounding box because you want to crop out a rectangular region of interest from your image then you can use
props = regionprops(labeledImage, 'BoundingBox');
to get the bounding boxes of all the non-zero regions in your entire image. You can use the bounding box directly in imcrop() to crop out a region of interest. See my Image Segmentation Tutorial in my File Exchange for a full demo.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by