Open3D (C++ API)  0.19.0
FileFormatIO.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - Open3D: www.open3d.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.open3d.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 #include <string>
11 
12 namespace open3d {
13 namespace io {
14 
17  CONTAINS_POINTS = (1 << 0),
18  CONTAINS_LINES = (1 << 1),
19  CONTAINS_TRIANGLES = (1 << 2),
21 };
22 
26 FileGeometry ReadFileGeometryType(const std::string& path);
27 
28 FileGeometry ReadFileGeometryTypeGLTF(const std::string& path);
29 FileGeometry ReadFileGeometryTypeOBJ(const std::string& path);
30 FileGeometry ReadFileGeometryTypeFBX(const std::string& path);
31 FileGeometry ReadFileGeometryTypeUSD(const std::string& path);
32 FileGeometry ReadFileGeometryTypeOFF(const std::string& path);
33 FileGeometry ReadFileGeometryTypePCD(const std::string& path);
34 FileGeometry ReadFileGeometryTypePLY(const std::string& path);
35 FileGeometry ReadFileGeometryTypeSPLAT(const std::string& path);
36 FileGeometry ReadFileGeometryTypePTS(const std::string& path);
37 FileGeometry ReadFileGeometryTypeSTL(const std::string& path);
38 FileGeometry ReadFileGeometryTypeXYZ(const std::string& path);
39 FileGeometry ReadFileGeometryTypeXYZN(const std::string& path);
40 FileGeometry ReadFileGeometryTypeXYZRGB(const std::string& path);
41 
42 } // namespace io
43 } // namespace open3d
FileGeometry ReadFileGeometryTypeGLTF(const std::string &path)
Definition: FileGLTF.cpp:71
FileGeometry
Definition: FileFormatIO.h:15
@ CONTAINS_GAUSSIAN_SPLATS
Definition: FileFormatIO.h:20
@ CONTAINS_POINTS
Definition: FileFormatIO.h:17
@ CONTAINS_TRIANGLES
Definition: FileFormatIO.h:19
@ CONTENTS_UNKNOWN
Definition: FileFormatIO.h:16
@ CONTAINS_LINES
Definition: FileFormatIO.h:18
FileGeometry ReadFileGeometryTypePTS(const std::string &path)
Definition: FilePTS.cpp:20
FileGeometry ReadFileGeometryTypeXYZN(const std::string &path)
Definition: FileXYZN.cpp:19
FileGeometry ReadFileGeometryTypePCD(const std::string &path)
Definition: FilePCD.cpp:734
FileGeometry ReadFileGeometryTypeOFF(const std::string &path)
Definition: FileOFF.cpp:20
FileGeometry ReadFileGeometryTypeFBX(const std::string &path)
Definition: FileASSIMP.cpp:30
FileGeometry ReadFileGeometryTypeSTL(const std::string &path)
Definition: FileSTL.cpp:20
FileGeometry ReadFileGeometryTypeXYZRGB(const std::string &path)
Definition: FileXYZRGB.cpp:19
FileGeometry ReadFileGeometryType(const std::string &path)
Definition: FileFormatIO.cpp:41
FileGeometry ReadFileGeometryTypeOBJ(const std::string &path)
Definition: FileOBJ.cpp:24
FileGeometry ReadFileGeometryTypePLY(const std::string &path)
Definition: FilePLY.cpp:420
FileGeometry ReadFileGeometryTypeXYZ(const std::string &path)
Definition: FileXYZ.cpp:21
FileGeometry ReadFileGeometryTypeSPLAT(const std::string &)
Definition: FileFormatIO.cpp:37
FileGeometry ReadFileGeometryTypeUSD(const std::string &path)
Definition: FileASSIMP.cpp:34
Definition: PinholeCameraIntrinsic.cpp:16