How to write Ply file that includes triangulation?

12 visualizaciones (últimos 30 días)
OJ27
OJ27 el 5 de Sept. de 2017
Respondida: raphael falque el 18 de Mzo. de 2021
I have vertices, color, and triangulation of my 3D object. I have tried the pointCloud and pcwrite, but it only allows me to input vertices and color. When I try to load the ply file using Blender 2 things happen: -Colors are not properly read (only one color shows) -Points are not triangulated
  1 comentario
Dejan Dimitrijevic
Dejan Dimitrijevic el 19 de Mzo. de 2019
Editada: Dejan Dimitrijevic el 22 de Mzo. de 2019
Were you able to do this please...I don't think Ning Zhang realized that the plywrite in MATLAB only writes the vertices with their colors, but there are no triangle face(t) elements being written...it's basically just the point cloud, and there is no surface afterwards, which you asked for (the triangulation besides the vertices)...
Nevermind, found this, though not clean, as plywrite might be, it can write faces too...just have to traverse surface now...or does someone know a simpler way?

Iniciar sesión para comentar.

Respuestas (2)

Ning Zhang
Ning Zhang el 8 de Sept. de 2017
'pcread' should do the job for you to convert the PLY to MATLAB pointCloud Object
https://www.mathworks.com/help/vision/ref/pcread.html
To write to a PLY, which the Greg Turk's version of PLY is used in pcwrite, vertex number, position x y z, color RGB is all you need. Check the format of PLY in the following link:
If you try this following example in your Command Window
>> openExample('vision/WriteA3DPointCloudToAPLYFileExample')
In the opened script, if you change the encodingType from 'binary' to 'ascii'. You should be able to examine the XYZ and RGB values, once you generate the PLY
  1 comentario
raphael falque
raphael falque el 18 de Mzo. de 2021
Editada: raphael falque el 18 de Mzo. de 2021
This does not include the triangulation

Iniciar sesión para comentar.


raphael falque
raphael falque el 18 de Mzo. de 2021
I added the color output to the write_ply from Gabriel Peyré over there: https://github.com/rFalque/3D_tools_matlab/blob/main/IO/write_ply.m

Categorías

Más información sobre Point Cloud Processing 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