supremum of openings by set of linear structuring elements

1 回表示 (過去 30 日間)
rky
rky 2014 年 7 月 24 日
コメント済み: rky 2014 年 7 月 30 日
I want to extract elongated structures with using angle of rotation like r=[15....90;-15...-90] so that supremum of opening consists of set of lines.
so how i should proceed
  2 件のコメント
Image Analyst
Image Analyst 2014 年 7 月 24 日
First you should attach your images so we can see if imopen() is the best approach to get your elongated structures. I mean, why not just threshold and call regionprops to get the orientations (angles)? I don't know because you did not attach your image.
rky
rky 2014 年 7 月 25 日
Basically i want to extract blood vessels from my retinal images

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

採用された回答

Image Analyst
Image Analyst 2014 年 7 月 26 日
  3 件のコメント
Image Analyst
Image Analyst 2014 年 7 月 28 日
Define supremum. Do you just mean the max? Why not just do
openedImage = imopen(originalImage,se);
if i == 0
resultImage = openedImage;
else
resultImage = max(resultImage, openedImage);
end
rky
rky 2014 年 7 月 30 日
if i want angle of rotation i = [15....90;-15...-90] and also [105...180;195...270] how i should do .

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by