UFO 1.0.0
An Efficient Probabilistic 3D Mapping Framework That Embraces the Unknown
Loading...
Searching...
No Matches
xyzn.cpp
1// UFO
2#include <ufo/io/xyzn.hpp>
3
4// STL
5#include <filesystem>
6
7namespace ufo
8{
9CloudProperties cloudPropertiesXYZN(std::filesystem::path const& file)
10{
11 CloudProperties prop;
12 prop.color = false;
13 prop.alpha = false;
14 prop.intensity = false;
15 prop.normal = true;
16
17 return prop;
18}
19} // namespace ufo
All vision-related classes and functions.
Definition cloud.hpp:49
bool color
true if the cloud carries per-point RGB colour data.