フィルターのクリア

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

3 ビュー (過去 30 日間)
John Wray
John Wray 2016 年 12 月 29 日
コメント済み: John Wray 2016 年 12 月 29 日
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

採用された回答

Image Analyst
Image Analyst 2016 年 12 月 29 日
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.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by