- binarize image
- use bwmorph to skeletonize
Extracting network from a 3D geometry
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/310424/image.png)
I have a 3D volume like the above and I would like to extarct network/ skeletonize from this.
I would like to ask for suggestions on how this can be done.
1 comentario
Respuestas (1)
Mahesh Taparia
el 17 de Jul. de 2020
Hi
You can do this by using thresholding as suggested. For example, consider the line of code:
a=imread('image.png');
gray=rgb2gray(a);
b=imbinarize(gray);
imshow(b)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!