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
采纳的回答
更多回答(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!