supremum of openings by set of linear structuring elements
3 次查看(过去 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
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.
采纳的回答
Image Analyst
2014-7-26
3 个评论
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
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!