EasyNav Plugins
Loading...
Searching...
No Matches
pcl_utils.hpp
Go to the documentation of this file.
1#pragma once
2#include <eigen3/Eigen/Core>
3#include <string>
4
5#include "bonxai/bonxai.hpp"
6
7namespace Bonxai
8{
9
10bool ReadPointsFromPCD(const std::string & filepath, std::vector<Eigen::Vector3d> & points);
11
12bool ReadPointsFromPCD(const std::string & filepath, std::vector<Point3D> & points);
13
14void WritePointsFromPCD(const std::string & filepath, const std::vector<Eigen::Vector3d> & points);
15
16void WritePointsFromPCD(const std::string & filepath, const std::vector<Bonxai::Point3D> & points);
17
18void WritePointsFromPCD(const std::string & filepath, const std::vector<Bonxai::CoordT> & points);
19
20} // namespace Bonxai
Definition bonxai.hpp:28
void WritePointsFromPCD(const std::string &filepath, const std::vector< Eigen::Vector3d > &points)
Definition pcl_utils.cpp:66
bool ReadPointsFromPCD(const std::string &filepath, std::vector< Eigen::Vector3d > &points)
Definition pcl_utils.cpp:27