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.
utility_byte_differences.cpp
Go to the documentation of this file.
1 #include "utility.h"
2 
3 namespace CVD {
4 
5  void differences(const byte* a, const byte* b, short* diff, unsigned int count) {
6  differences<byte, short>(a, b, diff, count);
7  }
8 
9  void differences(const short* a, const short* b, short* diff, unsigned int count) {
10  differences<short, short>(a, b, diff, count);
11  }
12 }
Definition: abs.h:24
unsigned char byte
Definition: byte.h:28
void differences(const A *a, const A *b, B *diff, size_t count)
Definition: utility.h:128