How can I find the length in a binary image?

8 vues (au cours des 30 derniers jours)
Sanghyeon Chang
Sanghyeon Chang le 18 Jan 2023
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

Réponses (1)

Image Analyst
Image Analyst le 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

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by