how to use a for loop to find all row ?!

3 ビュー (過去 30 日間)
Ajaree Rattanaharn
Ajaree Rattanaharn 2019 年 2 月 28 日
Hello, Please Help me?
I want to find the lenght of index <1 = black color in the picture name 'bwcircle_crop'
crack_crop.jpg
but now, I write the code for thr first row but I dont know to use for loop to find the same way in all row.
เส้นแถวแรก.png
Thank you ^^

採用された回答

KSSV
KSSV 2019 年 2 月 28 日
編集済み: KSSV 2019 年 3 月 1 日
I = imread('crack_crop.jpeg') ;
I = rgb2gray(I) ;
[y,x] = find(I==0) ;
imshow(I)
hold on
plot(x,y,'.r')
%% GEt bounding box
x0 = min(x) ; x1 = max(x) ;
y0 = min(y) ; y1 = max(y) ;
%
B = x1-x0 ;
L = y1-y0 ;
R = [x0 y0 ; x0 y1 ; x1 y1 ; x1 y0] ;
% patch(R(:,1),R(:,2),'b')
if L>B
title('Vertical Crack')
else
title('Horizonatal Crack')
end
  5 件のコメント
KSSV
KSSV 2019 年 3 月 1 日
Edited the code.
Ajaree Rattanaharn
Ajaree Rattanaharn 2019 年 3 月 1 日
Thank You very much
I'm done.^^

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by