フィルターのクリア

after we obtain a binary image ...is there any way to strong the edge??

1 回表示 (過去 30 日間)
sara
sara 2014 年 9 月 15 日
コメント済み: Image Analyst 2014 年 9 月 17 日
hi after we obtain a binary image with edge for example with otsu method ...is there any way to strengthen these edges??
  8 件のコメント
Iain
Iain 2014 年 9 月 17 日
strengthen = to make stronger
strong, used like sara used it could equally have been a typo for storing as well as "make stronger"
sara
sara 2014 年 9 月 17 日
thanks lain

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

回答 (2 件)

Image Analyst
Image Analyst 2014 年 9 月 15 日
To make edges more contrasty, use a high boost filter:
kernel = [-1,-1,-1;-1,17,-1;-1,-1,-1]/9;
highBoostFilteredImage = imfilter(double(grayImage), kernel);
imshow(highBoostFilteredImage, []);
That's one way, anyway. There are others.
  2 件のコメント
Image Analyst
Image Analyst 2014 年 9 月 16 日
After reading your "Answer" I really don't know what you want to do. Perhaps you can find a paper here that did the same thing you would like to do: http://www.visionbib.com/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20MRI,%20Ultrasound,%20Heart%20Models,%20Brain%20Models
sara
sara 2014 年 9 月 17 日
thanks Image Analyst after obtaining enough information I will come back soon and ask my question in a clear way.

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


sara
sara 2014 年 9 月 16 日
thanks Image Analyst and Salaheddin Hosseinzadeh
dear Image Analyst with your guidance and some modification that I did , I obtain a better result..but if you see there is a lesion around lung .I thouth if I use a filter that strong the edge maybe the result is better ...I used your seggustion
if true
kernel = [-1,-1,-1;-1,17,-1;-1,-1,-1]/9;
highBoostFilteredImage = imfilter(double(grayImage), kernel);
imshow(highBoostFilteredImage, []);
end
but I think it is not a good idea...Image Analyst and Salaheddin Hosseinzadeh do you have a good idea?
  1 件のコメント
Image Analyst
Image Analyst 2014 年 9 月 17 日
I believe the discussion is taking place now in your duplicate thread.

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

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by