How to evaluate the height and width of an object in BW image

1 回表示 (過去 30 日間)
sana3 sal
sana3 sal 2018 年 5 月 2 日
コメント済み: Walter Roberson 2020 年 6 月 13 日
Hello, I need to find the height and width of the following white object in this image.

回答 (1 件)

Alfonso
Alfonso 2018 年 5 月 2 日
編集済み: Alfonso 2018 年 5 月 2 日
Try this
% Get boundary
bw = bwboundaries(binary_img);
bw = bw{1};
bw_x = bw(:, 2); %columns
bw_y = bw(:, 1); %rows
% height and width
leftCol = min(bw_x);
rightCol = max(bw_x);
top = max(bw_y);
bottom = min(bw_y);
width = rightCol - leftCol + 1;
height = top - bottom + 1;
% Crop the img
img_cropped = imcrop(binary_img, [leftCol, bottom, width, height]);
imshow(img_cropped)
Just change binary_img by the name of the one you posted.
  3 件のコメント
Alfonso
Alfonso 2018 年 5 月 2 日
Okay, glad you were finally able to solve it.
Walter Roberson
Walter Roberson 2020 年 6 月 13 日
can i get ur solution please?

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by