Clear Filters
Clear Filters

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

3 views (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 29 Dec 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.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!