Why Binary to Ascii change the Properties order ?
Posted: Wed Oct 18, 2023 8:42 am
Hi Daniel and team.
I've been using CC convert a ply binary little endian to ASCII via CommandLine bat file.
My issue is that the converted file RAW ASCII doesn't use a same Properties order than in the Original BINARY (position normal color)
Converted file RAW ASCII from CloudCompare is (position color normal)
How can i preserve the original properties order ?
Original BINARY
Converted file RAW ASCII from CloudCompare
I've been using CC convert a ply binary little endian to ASCII via CommandLine bat file.
My issue is that the converted file RAW ASCII doesn't use a same Properties order than in the Original BINARY (position normal color)
Converted file RAW ASCII from CloudCompare is (position color normal)
How can i preserve the original properties order ?
Original BINARY
Code: Select all
ply
format binary_little_endian 1.0
obj_info XXXXXXXXXXXXXXX
element vertex 318456
property float x
property float y
property float z
property float nx
property float ny
property float nz
property uchar red
property uchar green
property uchar blue
Code: Select all
ply
format ascii 1.0
comment Created by CloudCompare v2.13.alpha
comment Created 2023-10-18T17:19:40
obj_info Generated by CloudCompare!
element vertex 318456
property float x
property float y
property float z
property uchar red
property uchar green
property uchar blue
property float nx
property float ny
property float nz