diff options
| author | Stéphane Lenclud <github@lenclud.com> | 2019-03-10 17:10:02 +0100 |
|---|---|---|
| committer | Stéphane Lenclud <github@lenclud.com> | 2019-03-10 17:10:02 +0100 |
| commit | 8a9d143523fddbf8ee9cb1c58cb281ac380d3ae0 (patch) | |
| tree | ae5cabae1134456eff8260ff6e7c30639c9ef42c /tracker-pt/pt-api.hpp | |
| parent | c90f8fbd1a83ffeed6b0bb9d55e91f4a4a9b8641 (diff) | |
Kinect Point Tracker: Working on basic architecture.
Diffstat (limited to 'tracker-pt/pt-api.hpp')
| -rw-r--r-- | tracker-pt/pt-api.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tracker-pt/pt-api.hpp b/tracker-pt/pt-api.hpp index b44cfea22..a7fc464b3 100644 --- a/tracker-pt/pt-api.hpp +++ b/tracker-pt/pt-api.hpp @@ -66,6 +66,11 @@ struct pt_preview : pt_frame virtual void draw_head_center(f x, f y) = 0; }; +/// +/// Defines a camera interface. +/// A camera can be started and stopped. +/// Once started one can obtain frames through this interface. +/// struct pt_camera { using result = std::tuple<bool, pt_camera_info>; |
