Helios++
Helios software for LiDAR simulations
LadLutLoader.h
1 #pragma once
2 
3 #include <LadLut.h>
4 #include <string>
5 #include <memory>
6 
11 public:
12  // *** CONSTRUCTION / DESTRUCTION *** //
13  // ************************************ //
17  LadLutLoader() = default;
18  virtual ~LadLutLoader() = default;
19 
20  // *** L O A D *** //
21  // ***************** //
28  std::shared_ptr<LadLut> load(
29  std::string const &path,
30  std::string const separator = ","
31  );
32 };
Loader for Leaf Angle Distribution Look Up Tables.
Definition: LadLutLoader.h:10
LadLutLoader()=default
Build a new loader for leaf angle distribution look up tables.
std::shared_ptr< LadLut > load(std::string const &path, std::string const separator=",")
Load LadLut from specified file.
Definition: LadLutLoader.cpp:8