Clear Filters
Clear Filters

How do you find boundaries of a binary matrix developed from an image?

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

Answers (1)

Image Analyst
Image Analyst on 22 Nov 2022
Yes
[rows, columns] = find(binaryMatrix);
topRow = min(rows)
bottomRow = max(rows)
leftColumn = min(columns)
rightColumn = max(columns)

Categories

Find more on Images in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!