|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromText (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
| loads from .csv, .asc, .xyz, .txt file
|
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromText (std::istream &in, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromPts (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
| loads from Laser scan plain data format (.pts) file
|
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromPts (std::istream &in, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromPly (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
| loads from .ply file
|
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromPly (std::istream &in, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromObj (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
| loads from .obj file
|
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromObj (std::istream &in, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromDxf (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromDxf (std::istream &in, const PointsLoadSettings &settings={}) |
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromAnySupportedFormat (const std::filesystem::path &file, const PointsLoadSettings &settings={}) |
| detects the format from file extension and loads points from it
|
|
MRMESH_API Expected< PointCloud > | MR::PointsLoad::fromAnySupportedFormat (std::istream &in, const std::string &extension, const PointsLoadSettings &settings={}) |
| extension in *.ext format
|
|