Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 7153 - 3DGS IO #7191

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpp/open3d/t/io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ target_sources(tio PRIVATE
file_format/FileJPG.cpp
file_format/FilePCD.cpp
file_format/FilePLY.cpp
file_format/FileSPLAT.cpp
file_format/FilePNG.cpp
file_format/FilePTS.cpp
file_format/FileTXT.cpp
Expand Down
1 change: 1 addition & 0 deletions cpp/open3d/t/io/PointCloudIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ static const std::unordered_map<
{"xyzrgb", WritePointCloudToTXT},
{"pcd", WritePointCloudToPCD},
{"ply", WritePointCloudToPLY},
{"splat", WritePointCloudToSPLAT},
{"pts", WritePointCloudToPTS},
};

Expand Down
8 changes: 8 additions & 0 deletions cpp/open3d/t/io/PointCloudIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ bool WritePointCloudToPLY(const std::string &filename,
const geometry::PointCloud &pointcloud,
const WritePointCloudOption &params);

bool ReadPointCloudFromSPLAT(const std::string &filename,
geometry::PointCloud &pointcloud,
const ReadPointCloudOption &params);

bool WritePointCloudToSPLAT(const std::string &filename,
const geometry::PointCloud &pointcloud,
const WritePointCloudOption &params);

bool ReadPointCloudFromPTS(const std::string &filename,
geometry::PointCloud &pointcloud,
const ReadPointCloudOption &params);
Expand Down
286 changes: 238 additions & 48 deletions cpp/open3d/t/io/file_format/FilePLY.cpp

Large diffs are not rendered by default.

Loading
Loading