How do you find boundaries of a binary matrix developed from an image?
5 views (last 30 days)
Show older comments
I currently have an image that I have put thresholds on to then create a binary matrix (833x1464). Is there any way to find the first and last row where the value 1 appears, and the same for the colums?
0 Comments
Answers (1)
Image Analyst
on 22 Nov 2022
Yes
[rows, columns] = find(binaryMatrix);
topRow = min(rows)
bottomRow = max(rows)
leftColumn = min(columns)
rightColumn = max(columns)
0 Comments
See Also
Categories
Find more on Matrix Indexing 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!