Removing components touching phase in 3d volume
Show older comments
Hi all
I have a 3d volume composed of tif files with three phases, namely particle phase, pore phase and a border phase. I would like to delete all particles touching the border phase. One slice looks something like this
and I would like to remove all the particles (2) that touch the outer border (1) within the whole 3d volume.
Any help would be greatly appreciated.
thanks
Answers (2)
Sean de Wolski
on 14 Jul 2016
Use bwdist to get the distance from every pixel to the border (euclidean distance). Zero out any less than or equal to sqrt(2).
D = bwdist(I==phase1);
D(D<=(sqrt(2)+eps)) = 0;
Sohrab Daemi
on 14 Jul 2016
0 votes
Categories
Find more on Region and Image Properties in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!