licornea_tools
common.h
Go to the documentation of this file.
1 #ifndef LICORNEA_KINECT_COMMON_H_
2 #define LICORNEA_KINECT_COMMON_H_
3 
4 #include <cstddef>
5 #include <cstdint>
6 #include "../../lib/common.h"
7 
8 namespace tlz {
9 
10 constexpr std::size_t depth_width = 512;
11 constexpr std::size_t depth_height = 424;
12 constexpr std::size_t texture_width = 1920;
13 constexpr std::size_t texture_height = 1080;
14 
15 }
16 
17 #endif
constexpr std::size_t texture_height
Definition: common.h:13
constexpr std::size_t texture_width
Definition: common.h:12
constexpr std::size_t depth_height
Definition: common.h:11
constexpr std::size_t depth_width
Definition: common.h:10