convert point cloud to surface
Mostrar comentarios más antiguos
Hi,
I have points cloud (x,y,z) extracted from Dicom image (see the first attachment). I want to convert it to a smooth surface
I used the following commands:
DT_A= DelaunayTri(x,y,z);
[tri XA]= freeBoundary(DT_A);
figure;
trisurf(tri,XA(:,1),XA(:,2),XA(:,3), 'FaceColor', 'cyan', 'faceAlpha', 0.8);
Because it has an irregular shape, I have lost a lot of details.
any comment, suggestions or ideas
1 comentario
Eman
el 25 de Nov. de 2014
Respuestas (2)
Chad Greene
el 25 de Nov. de 2014
1 voto
Areeb Mir
el 4 de Oct. de 2017
0 votos
Hello. Is it possible for you to share the code for converting DICOM to Point Cloud?
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!