Finding the particular path using image processing

10 ビュー (過去 30 日間)
waqas
waqas 2020 年 8 月 24 日
コメント済み: waqas 2020 年 11 月 22 日
Hi,
I need to find the path from the attached displacement field attached as .MAT file. My code was working on other data sets that I was analyzing but is not working for the new data set I have.
Currently I am using following code:
Igray = mat2gray(dispfield);
th = multithresh(Igray,2);
Iseg = imquantize(Igray,th);
se = strel('disk',1);
BW1 = bwperim(Iseg == 1);
BW1 = imdilate(BW1,se);
BW2 = bwperim(Iseg == 2);
BW2 = imdilate(BW2,se);
BWedge = BW1 & BW2;
BWedge = bwmorph(BWedge,'skel',Inf);
bwedge = BWedge;
[Y,X] = find(bwedge);
cracklinefit = fit(X,Y,'poly3','Normalize','on');
% cracklinefit = fit(X,Y,'poly3','Normalize','on','Robust','Bisquare');
outputArg3 = [1:size(bwedge,2)]';
outputArg2 = round(cracklinefit(outputArg3));

採用された回答

Madhav Thakker
Madhav Thakker 2020 年 9 月 8 日
Hi Waqas,
I understand that you want to calculate path from the given .MAT file. I see that your code was not working for this example due to some distortions.
One useful function to use here is bwareaopen() which removes all connected components (objects) that have fewer than P pixels from the binary image.
I am attaching a code snippet for better understanding.
Igray = mat2gray(dispfield);
th = multithresh(Igray,1);
Iseg = imquantize(Igray,th);
%imshow(Iseg,[])
se = strel('disk',1);
BW1 = bwperim(Iseg == 1);
BW1 = imdilate(BW1,se);
bwedge = bwareaopen(BW1, 100); % removes all connected components (objects) that have fewer than P pixels
[Y,X] = find(bwedge);
cracklinefit = fit(X,Y,'poly3','Normalize','on');
% cracklinefit = fit(X,Y,'poly3','Normalize','on','Robust','Bisquare');
outputArg3 = [1:size(bwedge,2)]';
outputArg2 = round(cracklinefit(outputArg3));
Hope this helps.
  1 件のコメント
waqas
waqas 2020 年 11 月 22 日
it ended up helping me in another implementation. Thank you.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImport, Export, and Conversion についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by