Isolate the outline of a shape.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alex Perrakis
el 31 de Ag. de 2021
Comentada: Matt J
el 31 de Ag. de 2021
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 comentarios
Respuesta aceptada
Matt J
el 31 de Ag. de 2021
Editada: Matt J
el 31 de Ag. de 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 comentarios
Matt J
el 31 de Ag. de 2021
Thanks i found a way with bwboundaries, now i have another problem.
If so, you should post it as a new question.
Más respuestas (0)
Ver también
Categorías
Más información sobre Computer Vision with Simulink en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!