Extracting network from a 3D geometry

2 Ansichten (letzte 30 Tage)
Deepa Maheshvare
Deepa Maheshvare am 5 Jun. 2020
Beantwortet: Mahesh Taparia am 17 Jul. 2020
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 Kommentar
darova
darova am 13 Jun. 2020
  • binarize image
  • use bwmorph to skeletonize

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Mahesh Taparia
Mahesh Taparia am 17 Jul. 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)

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by