SLAMflex SE  0.1.0
SLAMflex provides detection and tracking of dominant planes for smartphone devices. This plane can then be used to show AR content relative to the plane orientation. The detection of plane is performed in the field of view of the smartphone camera. In subsequent frames it is tracked. The interface returns the plane position and orientation.
builtin_typeof.h
Go to the documentation of this file.
1 template<int N> struct Enumerate{char i[N];};
2 Enumerate<0> enumerate(const unsigned char&);
3 Enumerate<1> enumerate(const char&);
4 Enumerate<2> enumerate(const int&);
5 Enumerate<3> enumerate(const unsigned int&);
6 Enumerate<4> enumerate(const float&);
7 Enumerate<5> enumerate(const double&);
8 Enumerate<6> enumerate(const std::complex<float>&);
9 Enumerate<7> enumerate(const std::complex<double>&);
10 template<int N> struct DeEnumerate{};
11 template<> struct DeEnumerate<0>{typedef unsigned char type;};
12 template<> struct DeEnumerate<1>{typedef char type;};
13 template<> struct DeEnumerate<2>{typedef int type;};
14 template<> struct DeEnumerate<3>{typedef unsigned int type;};
15 template<> struct DeEnumerate<4>{typedef float type;};
16 template<> struct DeEnumerate<5>{typedef double type;};
17 template<> struct DeEnumerate<6>{typedef std::complex<float> type;};
18 template<> struct DeEnumerate<7>{typedef std::complex<double> type;};
unsigned char type
unsigned int type
Enumerate< 0 > enumerate(const unsigned char &)
std::complex< float > type
char i[N]
Definition: builtin_typeof.h:1
std::complex< double > type