summaryrefslogtreecommitdiff
path: root/offsetProject/src/ofApp.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2014-03-12 09:16:46 +0000
committerComment <tim@gray.(none)>2014-03-12 09:16:46 +0000
commit8f9a8b4c06bb168b91cb0a3971c3dc37fb67220f (patch)
tree16062fc67db1680066a47eba05d63e30950cd916 /offsetProject/src/ofApp.h
parent63a6970325463b3533edbf910f88750cb2d096f1 (diff)
image store working
Diffstat (limited to 'offsetProject/src/ofApp.h')
-rw-r--r--offsetProject/src/ofApp.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/offsetProject/src/ofApp.h b/offsetProject/src/ofApp.h
index 67e1b71..f1f8253 100644
--- a/offsetProject/src/ofApp.h
+++ b/offsetProject/src/ofApp.h
@@ -4,8 +4,7 @@
#include "ofxOpenCv.h"
#include "ofxKinect.h"
-#define MIN_TILE_SIZE 4 //has to be a divisor of 320 and 240 as the tiles are centred
-#define MAX_TILE_SIZE 32 //has to be a power of 2 * MIN_TILE_SIZE
+#include "imageStore.h"
#define MODE_COLOURTILES 0
#define MODE_DEPTH 1
@@ -13,7 +12,7 @@
#define NUM_MODES 3
-#define IMAGE_STORE_SIZE 256
+
class ofApp : public ofBaseApp {
@@ -30,7 +29,7 @@ public:
void mouseReleased(int x, int y, int button);
void windowResized(int w, int h);
-
+ imageStore store;
int mode;
bool fullscreen;