Borrar filtros
Borrar filtros

3D surface triangulation

55 visualizaciones (últimos 30 días)
Hosna Ghaderi
Hosna Ghaderi el 5 de Sept. de 2023
Comentada: Hosna Ghaderi el 20 de Sept. de 2023
Hello, i have a point clould of a sphere which has a hole in it. the mat file of the points is attahced. I am trying to triangulate it. I have been useing several methods but it can be done correctly. Finally i found Robust crust code which can do it but it fills the hole as well. i attached the functions as well. Is there any one that could help to solve this issue?
load pointcloud.mat
XX1 = p1(:,1);
YY1 = p1(:,2);
ZZ1 = p1(:,3);
p1=[XX1,YY1,ZZ1];
p1 = unique(p1,'rows');
[t1]=Traingulationnn(p1);

Respuestas (2)

John D'Errico
John D'Errico el 5 de Sept. de 2023
Editada: John D'Errico el 5 de Sept. de 2023
What is the problem? Just delete any triangles with edges that are long. Since the CRUST code will span that hole, any triangles crossing the hole will have at least one long edge. Zap them away. Problem solved. All you need do is decide on a parameter for how long an edge needs to be to want to delete the corresponding triangle. Surely you can do that much?
load pointcloud.mat
plot3(p1(:,1),p1(:,2),p1(:,3),'.')
So, knowing the hole on the bottom is what you wish to zap away, I would guess that any triangle with an edge longer than something like 5-10 units will let you kill off the offending triangles. 10 units may be a little too large. 5 is probably adequate. A quick experiment would allow you to choose something intelligent, based on your own eyes.
  1 comentario
Hosna Ghaderi
Hosna Ghaderi el 20 de Sept. de 2023
Thank you for your reply, i want to know how to modify this solution in CRUST code as i am going to use it for other clouds with different shapes as well.

Iniciar sesión para comentar.


Richard Burnside
Richard Burnside el 5 de Sept. de 2023
load pointcloud.mat
XX1 = p1(:,1);
YY1 = p1(:,2);
ZZ1 = p1(:,3);
p1=[XX1,YY1,ZZ1];
p1 = unique(p1,'rows');
T = delaunay(p1(:,1),p1(:,2));
trisurf(T,p1(:,1),p1(:,2),p1(:,3));

Categorías

Más información sobre Delaunay Triangulation en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by