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.
runnable.h
Go to the documentation of this file.
1 #ifndef LIBSLAMFLEX_JNI_RUNNABLE_H_
2 #define LIBSLAMFLEX_JNI_RUNNABLE_H_
3 
4 namespace CVD {
6 class Runnable
7 {
8  public:
10  virtual void run()=0;
11  virtual ~Runnable(){};
12 };
13 
14 }
15 #endif
virtual void run()=0
Perform the function of this object.
This is an abstract base class for anything with a run() method.
Definition: runnable.h:6
Definition: abs.h:24
virtual ~Runnable()
Definition: runnable.h:11