How can I find the length in a binary image?

7 views (last 30 days)
Hi. I'd like to calculate the average length of the redline that I drew.
Red lines are representing the longest length (in vertical-wise) of the each objects.
The original images are already in binary images

Answers (1)

Image Analyst
Image Analyst on 18 Jan 2023
It looks like it goes from the first white pixel in two different columns down to the bottom of the image, which is just the sum of the white pixels in the whole column.
length1 = nnz(binaryImage(:, column1))
length2 = nnz(binaryImage(:, column2))
averageLength = (length1 + length2) / 2

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!