supremum of openings by set of linear structuring elements

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

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.
Basically i want to extract blood vessels from my retinal images

댓글을 달려면 로그인하십시오.

 채택된 답변

Image Analyst
Image Analyst 2014년 7월 26일

0 개 추천

댓글 수: 3

Thanks for above link
Linear structuring element for opening operation can be applied as below example
while(i<360)
se=strel('line',17,i);
i=i+15;
img=imopen(img,se);
end
but how to find supremum of opening
Thanks
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
if i want angle of rotation i = [15....90;-15...-90] and also [105...180;195...270] how i should do .

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

질문:

rky
2014년 7월 24일

댓글:

rky
2014년 7월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by