Skip to content

Commit

Permalink
remove unused/unimplemented APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
LiangliangNan committed Jan 21, 2022
1 parent 84d6577 commit 233d969
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions 3rd_party/easy3d/fileio/point_cloud_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,11 @@ namespace easy3d {


namespace io {
// three blocks storing points, colors (optional), and normals (optional)
bool load_bin(const std::string& file_name, PointCloud* cloud);
bool save_bin(const std::string& file_name, const PointCloud* cloud);

// each line with only point: (x, y, z)
bool load_xyz(const std::string& file_name, PointCloud* cloud);
bool save_xyz(const std::string& file_name, const PointCloud* cloud);
bool load_bxyz(const std::string& file_name, PointCloud* cloud);
bool save_bxyz(const std::string& file_name, const PointCloud* cloud);

bool load_ply(const std::string& file_name, PointCloud* cloud);
bool save_ply(const std::string& file_name, const PointCloud* cloud, bool binary = true);

// Read/Write both las and laz formats. Internally it uses the LASlib
// of martin.isenburg@rapidlasso.com, see http://rapidlasso.com
bool load_las(const std::string& file_name, PointCloud* cloud);
bool save_las(const std::string& file_name, const PointCloud* cloud);

};


Expand Down

0 comments on commit 233d969

Please sign in to comment.