Isolate the outline of a shape.
6 views (last 30 days)
Show older comments
Hello i have through binarizing and using bwpropfilt i have got the attached image, my question is : does anyone have an idea how i can isolate the outline of the shape in the middle and have it as a shape?
0 Comments
Accepted Answer
Matt J
on 31 Aug 2021
Edited: Matt J
on 31 Aug 2021
Perhaps as follows?
load Image
BW=bwareafilt(Image,1);
BW=imerode(bwconvhull(BW),strel('disk',20))& ~BW;
BW=imopen(BW,ones(10,1));
BW=bwperim(bwareafilt(BW,1));
imshow(BW); zoom(3)
2 Comments
Matt J
on 31 Aug 2021
Thanks i found a way with bwboundaries, now i have another problem.
If so, you should post it as a new question.
More Answers (0)
See Also
Categories
Find more on Computer Vision with Simulink in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!