EPointCloud::SavePLY

Saves the EPointCloud in the PLY file format.

Namespace: Euresys::Open_eVision::Easy3D

[C++]

void SavePLY(
   const std::string& path,
   bool binary
)

Parameters

path

The full path of the destination file.

binary

Whether to store the file in binary instead of ascii, defaults to true.

Remarks

The PLY file format is documented here: http://paulbourke.net/dataformats/ply/.
Custom user fields are named custom0, custom1,...
Colors are saved as 4 uchar fields suffixed with (_red, _green, _blue, _alpha) for custom attributes or named (red, green, blue, alpha) for the pointcloud's color attribute.
Points are saved as 3 consecutive floats whose names are suffixed with _x, _y, _z.
Use EPointCloud::LoadPLY to load from PLY file.

EPointCloud.SavePLY

Saves the EPointCloud in the PLY file format.

Namespace: Euresys.Open_eVision.Easy3D

[C#]

void SavePLY(
   string path,
   bool binary
)

Parameters

path

The full path of the destination file.

binary

Whether to store the file in binary instead of ascii, defaults to true.

Remarks

The PLY file format is documented here: http://paulbourke.net/dataformats/ply/.
Custom user fields are named custom0, custom1,...
Colors are saved as 4 uchar fields suffixed with (_red, _green, _blue, _alpha) for custom attributes or named (red, green, blue, alpha) for the pointcloud's color attribute.
Points are saved as 3 consecutive floats whose names are suffixed with _x, _y, _z.
Use EPointCloud::LoadPLY to load from PLY file.