supereight
point_cloud_io.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2020-2021 Smart Robotics Lab, Imperial College London, Technical University of Munich
3  * SPDX-FileCopyrightText: 2020-2021 Nils Funk
4  * SPDX-FileCopyrightText: 2020-2021 Sotiris Papatheodorou
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef SE_POINT_CLOUD_IO_HPP
9 #define SE_POINT_CLOUD_IO_HPP
10 
11 #include <fstream>
12 #include <string>
13 
14 #include "se/image/image.hpp"
15 
29  const std::string& filename,
30  const Eigen::Matrix4f& T_WC);
31 
32 
33 
34 #include "impl/point_cloud_io_impl.hpp"
35 
36 #endif // SE_POINT_CLOUD_IO_HPP
int save_point_cloud_vtk(se::Image< Eigen::Vector3f > &point_cloud, const std::string &filename, const Eigen::Matrix4f &T_WC)
Save a point cloud as a VTK file.
Definition: image.hpp:20