How to find distribution of thickness??
이전 댓글 표시
Hi All,
How to find distribution of thickness in black portion of images like this ??
Thanks in advance Shan
댓글 수: 3
Shan Kapoor
2012년 1월 13일
Oleg Komarov
2012년 1월 13일
편집: Jan
2012년 11월 14일
Jan
2012년 11월 14일
@Oleg: I vote for your comment.
채택된 답변
추가 답변 (1개)
Vedpal Singh
2015년 2월 1일
0 개 추천
Euclidean Distance Transform [bwdist()]can be used only to calculate the thickness of 2D image not 3D images.
Anybody can suggest the 3D thickness measurement methods?
댓글 수: 3
Anthony
2015년 2월 11일
I don't have experience with this particular function but if it is a 3D image you are interested in you could just run the 2D function for each 2D slice of the image and then compile the results together. Just a thought.
Image Analyst
2015년 2월 12일
Why do you say that? That's not true. Just look at the help:
D = bwdist(BW) computes the Euclidean distance transform of the binary image BW. For each pixel in BW, the distance transform assigns a number that is the distance between that pixel and the nearest nonzero pixel of BW. bwdist uses the Euclidean distance metric by default. BW can have any dimension. D is the same size as BW.
The key phrase being "BW can have any dimension." In other words, it can handle 3-D volumetric binary images.
Vedpal Singh
2015년 3월 4일
Thanks for the right acknowledgement.
카테고리
도움말 센터 및 File Exchange에서 Region and Image Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!