Extracting network from a 3D geometry

조회 수: 1 (최근 30일)
Deepa Maheshvare
Deepa Maheshvare 2020년 6월 5일
답변: Mahesh Taparia 2020년 7월 17일
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
darova
darova 2020년 6월 13일
  • binarize image
  • use bwmorph to skeletonize

댓글을 달려면 로그인하십시오.

답변 (1개)

Mahesh Taparia
Mahesh Taparia 2020년 7월 17일
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)

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by