EPointCloud::LoadOBJ

Loads an EPointCloud stored in the OBJ file format.

Namespace: Euresys::Open_eVision::Easy3D

[C++]

void LoadOBJ(
   const std::string& path
)

void LoadOBJ(
   const std::string& path,
   const EFloatRange& undefinedZValues
)

Parameters

path

The full path of the input file.

undefinedZValues

Optional parameter, discard the points with Z value in the given range.

Remarks

The OBJ file format is documented here: https://www.fileformat.info/format/wavefrontobj/egff.htm.
The only attribute loaded in the obj file format is the normals. Use pcd or ply if you need more.
Use EPointCloud::SaveOBJ to save to OBJ file.

EPointCloud.LoadOBJ

Loads an EPointCloud stored in the OBJ file format.

Namespace: Euresys.Open_eVision.Easy3D

[C#]

void LoadOBJ(
   string path
)

void LoadOBJ(
   string path,
   Euresys.Open_eVision.EFloatRange undefinedZValues
)

Parameters

path

The full path of the input file.

undefinedZValues

Optional parameter, discard the points with Z value in the given range.

Remarks

The OBJ file format is documented here: https://www.fileformat.info/format/wavefrontobj/egff.htm.
The only attribute loaded in the obj file format is the normals. Use pcd or ply if you need more.
Use EPointCloud::SaveOBJ to save to OBJ file.