How can I find the length in a binary image?

1 次查看(过去 30 天)
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

回答(1 个)

Image Analyst
Image Analyst 2023-1-18
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

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by