invisible

view src/frame.h @ 1:fdbd55eaa14e

add frame class, mutices
author Eleni Maria Stea <eleni@mutantstargoat.com>
date Sat, 05 Oct 2013 19:02:40 +0300
parents
children b0b90ef993a0
line source
1 #ifndef FRAME_H_
2 #define FRAME_H_
4 #include <libfreenect.h>
6 class Frame {
7 private:
8 int width;
9 int height;
11 public:
12 Frame();
14 };
16 void init_frame_mx();
17 void video_cb(freenect_device *kin_dev, void *rgb, uint32_t time);
18 void depth_cb(freenect_device *kin_dev, void *depth, uint32_t time);
20 #endif // FRAME_H_