Extracting network from a 3D geometry

2 ビュー (過去 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