summaryrefslogtreecommitdiff
path: root/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/testApp.h')
-rw-r--r--src/testApp.h13
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;
+
};