How can i find the length of the horizontal and vertical line present only in the white pixel region for the attached binary image.

2 ビュー (過去 30 日間)
isntvhN-2-R.jpg
  2 件のコメント
KSSV
KSSV 2018 年 12 月 10 日
If you want to it by gui, read about imdistline
sumaiya khan
sumaiya khan 2018 年 12 月 11 日
Thank you. How about doing it without GUI

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

採用された回答

KSSV
KSSV 2018 年 12 月 11 日
I = imread('download.jpg') ;
imshow(I) ;
h = imdistline ;
  1 件のコメント
sumaiya khan
sumaiya khan 2018 年 12 月 11 日
Thank you,
Sir, how can i rotate the vertical and horizontal line attached in the binary image at a certain angle.

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

その他の回答 (1 件)

Saeid
Saeid 2018 年 12 月 11 日
Hi, If the blue cross is not in the initial image, you can easily use this:
imgbw=im2bw(img);
VerticalLength=sum(img(:,column));
HorizontalLength=sum(img(row,:));
where img is your original image and row and column are from the center of the cross.

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by