Borrar filtros
Borrar filtros

How to take some points uniformly on the surface of the 3D model

30 visualizaciones (últimos 30 días)
I have an irregular three-dimensional surface, which includes points and surfaces. Now I want to evenly take some points on the surface of the model, and the interval between these points is 1 cm. I hope that the distance between them is the shortest distance along the surface of the model, rather than the space distance. The effect I want to achieve is shown in the image below, where yellow is the evenly distributed points.
What should I do specifically? Thank you!
  2 comentarios
Matt J
Matt J el 8 de En. de 2024
Editada: Matt J el 8 de En. de 2024
It needs more explanation. Suppose the surface was a sphere whose circuference at the equator is 4.5 cm. Obvously you would not be able to spread the points at 1 cm uniform intervals around the equator, or around any great circle of the sphere. What should happen?
三
el 9 de En. de 2024
Thank you very much for reminding me, I would like to say that 1 cm is an arbitrary value, I mean how to distribute points evenly on the surface of such an irregular model, thank you!

Iniciar sesión para comentar.

Respuesta aceptada

George Abrahams
George Abrahams el 10 de En. de 2024
Editada: George Abrahams el 10 de En. de 2024
Firstly, I'm assuming your model is in a triangular mesh format. If it's a point cloud, you can triangulate it with the alphaShape function. If it's a volume, you can use the isosurface function.
Then you have 2 options. Neither are trivial.
  • Poisson disc sampling. This produces a tightly-packed set of random points with a minimum-distance between them. The naive approach is to repeatedly select random points on the surface and reject them if they're too close to any other points. Here are a few implementations applied to 3D meshes, although none in MATLAB: [1] [2] [3] [4] [5].
  1 comentario
三
el 17 de Mzo. de 2024
Thank you very much for your detailed answer! It really helped me! Thank you for your kindness!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by