Keep only the last of the same sub-matxices
1 回表示 (過去 30 日間)
古いコメントを表示
hello
i have the above code that Walter Roberson help me with mean2.
for i=150:x-200
for j=150:y-800
if mean2(Pattern_epikef==Foto2(i:i+23,j:j+75) ) >= 0.85
%figure:imshow(Foto2(i:i+23,j:j+75));
%fprintf('dose pono mori astheneia\n');
figure:imshow(Foto2(i+20:i+100,j:j+800));
end
end
end
The thing i do is to search in a picture and if the pattern is the same with the specified segment of the picture do something. The pattern is multiple times in the picture. (4 times).When it finds the first, cause i have the theshold to be the same by 80%) it keep getting the same segment just shifted a bit by some pixels and so on fot the 2 etc .So,how can i keep only the last part of the same segmets???? Please help Monday last day before presentation!!
0 件のコメント
回答 (1 件)
Walter Roberson
2012 年 5 月 31 日
for i=150:x-200
jrun = -1;
for j=150:y-800
if mean2(Pattern_epikef==Foto2(i:i+23,j:j+75) ) >= 0.85
jrun = j;
elseif jrun > 0
Theseis=[i,jrun];
%figure:imshow(Foto2(i:i+23,jrun:jrun+75));
%fprintf('dose pono mori astheneia\n');
figure:imshow(Foto2(i+20:i+100,jrun:jrun+800));
jrun = -1;
end
end
end
7 件のコメント
Walter Roberson
2012 年 5 月 31 日
For this purpose, what do you mean by "arent close", and "do what i want" ?
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!