CameraModels.hpp
Go to the documentation of this file.
1 #ifndef __CAMERAMODEL_HPP__
2 #define __CAMERAMODEL_HPP__
3 
4 #include <memory>
5 
6 #include <Eigen/Dense>
7 
9 
10 namespace lvr2
11 {
12 
13 template<typename T>
15 {
16  double fx = 0;
17  double fy = 0;
18  double cx = 0;
19  double cy = 0;
20  unsigned width = 0;
21  unsigned height = 0;
22  std::vector<T> k;
23  std::string distortionModel = "unknown";
24 };
25 
26 template<typename T>
27 using PinholeModelPtr = std::shared_ptr<PinholeModel<T>>;
28 
31 
32 
33 } // namespace lvr2
34 
35 #endif
std::shared_ptr< PinholeModel< T > > PinholeModelPtr
std::vector< T > k
std::string distortionModel


lvr2
Author(s): Thomas Wiemann , Sebastian Pütz , Alexander Mock , Lars Kiesow , Lukas Kalbertodt , Tristan Igelbrink , Johan M. von Behren , Dominik Feldschnieders , Alexander Löhr
autogenerated on Mon Feb 28 2022 22:46:06