Skip to content

Instantly share code, notes, and snippets.

@dieza
Forked from SeungBack/convert obj to ply.md
Last active January 19, 2023 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dieza/8515b781f2be96fe1bf6af2b64a3c561 to your computer and use it in GitHub Desktop.
Save dieza/8515b781f2be96fe1bf6af2b64a3c561 to your computer and use it in GitHub Desktop.
Como convertit .obj a .ply con vértices coloreados y caras triangulares How to convert .obj to .ply, with colored vertices and triangular faces

Spanish version of How to convert .obj to .ply, with colored vertices and triangular faces by https://gist.github.com/SeungBack/e71eac0faa52088e3038395fef684494

  1. abrir meshlab e importar el objeto .obj
  2. centrar la malla
Filters -> Normals, Curvatures and Orientations ->
Transform: Move, Translate, Center -> 
center on layer bbox -> Apply
  1. subdividir la malla
Filters -> Remeshing, Simplication and Reconstruction -> 
Subdivision Surfaces:Midpoint -> Ajustar interacciones y Apply
  1. Colorear vértices usando la textura
Filters -> Color creation and Processing ->
Transfer Color:Texture to vertex
  1. Triangular las caras
Filters -> Polygonal and Quad Mesh -> Turn in to a Pure-Triangular Mesh
  1. Exportar malla -export mesh as- como ply
File -> Export mesh as -> ply -> Check only color (vertice), Normal (vertice), Binary encoding.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment