41 lines
1.6 KiB
C++
41 lines
1.6 KiB
C++
// ----------------------------------------------------------------------------
|
|
// - Open3D: www.open3d.org -
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright (c) 2018-2023 www.open3d.org
|
|
// SPDX-License-Identifier: MIT
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace open3d {
|
|
namespace io {
|
|
|
|
enum FileGeometry {
|
|
CONTENTS_UNKNOWN = 0,
|
|
CONTAINS_POINTS = (1 << 0),
|
|
CONTAINS_LINES = (1 << 1),
|
|
CONTAINS_TRIANGLES = (1 << 2),
|
|
};
|
|
|
|
/// Returns the kind of geometry that the file contains. This is a quick
|
|
/// function designed to query the file in order to determine whether to
|
|
/// call ReadTriangleMesh(), ReadLineSet(), or ReadPointCloud()
|
|
FileGeometry ReadFileGeometryType(const std::string& path);
|
|
|
|
FileGeometry ReadFileGeometryTypeGLTF(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeOBJ(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeFBX(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeOFF(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypePCD(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypePLY(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypePTS(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeSTL(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeXYZ(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeXYZN(const std::string& path);
|
|
FileGeometry ReadFileGeometryTypeXYZRGB(const std::string& path);
|
|
|
|
} // namespace io
|
|
} // namespace open3d
|