Find boundary vertice of 3D volume data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How can I find the boundary vertices of 3D volume data with 2 openings, the desired output should be two sets of boundary vertices. Thanks a lot.
0 comentarios
Respuestas (1)
Image Analyst
el 3 de Nov. de 2014
I don't see how you get two sets of coordinates. I'm thinking of a torus with two holes. To get the boundary vertices you can subtract the morphological erosion from the original binary image:
binaryImage = grayImage > someThreshold;
boundary = binaryImage - imerode(binaryImage, true(3,3,3));
or something like that.
Ver también
Categorías
Más información sobre Computer Vision with Simulink en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!