Spatial and Radial distribution of pores
2 views (last 30 days)
Show older comments
Hi everyone, I have X-ray images of a porous solid object having internal pores (voids). I want to compute spatial and radial distribution of these internal pores (voids). Any suggestion how can I perform this using Image processing tool of MATLAB. Thanks in advance.
0 Comments
Answers (1)
Image Analyst
on 24 Jul 2016
See my Image Segmentation Tutorial: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 If you still have questions, post your image and your code. It's hard to give specific image processing advice without an image.
2 Comments
Image Analyst
on 27 Jul 2016
Just scan the image getting the radius for every voxel location, then increment your distribution by 1 for that distance
for col = 1 : columns
for row = 1 : rows
for slice = 1 : numSlices
radius = round(sqrt((row - yCenter)^2 + ........
radialDistribution(radius) = radialDistribution(radius) + 1;
end
end
end
See Also
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!