diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-03-21 20:48:21 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-03-21 20:48:21 +0000 |
| commit | 3d5588a7ead64f3b11ef132f21469b9471819850 (patch) | |
| tree | 292c98a38e4979b662d217d5325e11112a57a161 /src/testApp.h | |
| parent | bba06c387bb44c46bf035bf6b68558dd34833879 (diff) | |
misc
Diffstat (limited to 'src/testApp.h')
| -rw-r--r-- | src/testApp.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/testApp.h b/src/testApp.h index 24bcbe9..32dae89 100644 --- a/src/testApp.h +++ b/src/testApp.h @@ -22,7 +22,9 @@ have to track how many frames each key has been pressed for #define CALIBRATE 1 #define DISPLAY 2 -#define NOTHING 3 +#define GRAB 3 +#define NOTHING 4 + #include "ofMain.h" #include "ofxXmlSettings.h" @@ -72,5 +74,12 @@ class testApp : public ofBaseApp{ ofxXmlSettings XML; bool light; - + + ofVideoGrabber vidGrabber; + + unsigned char * videoInverted; + ofTexture videoTexture; + int camWidth; + int camHeight; + }; |
