Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
John Wray
John Wray le 29 Déc 2016
Commenté : John Wray le 29 Déc 2016
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

Réponse acceptée

Image Analyst
Image Analyst le 29 Déc 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.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by