decode method

decode

Decode a point cloud or mesh from the specified stream.

Returns

A Mesh or PointCloud instance

def decode(self, file_name):
    ...
ParameterTypeDescription
file_namestrThe input stream

decode

Decode a point cloud or mesh from the specified stream.

Returns

A Mesh or PointCloud instance

def decode(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe input stream

decode

Decode a point cloud or mesh from the specified stream.

Returns

A Mesh or PointCloud instance

def decode(self, file_name, opt):
    ...
ParameterTypeDescription
file_namestrThe input stream
optPlyLoadOptionsThe load option of PLY format

decode

Decode a point cloud or mesh from the specified stream.

Returns

A Mesh or PointCloud instance

def decode(self, stream, opt):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe input stream
optPlyLoadOptionsThe load option of PLY format

See Also