Skip to content
Snippets Groups Projects
Projector.h 614 B
Newer Older
#include "State.h"

class Projector: public ofBaseApp {
    void setup();
    void update();
    void draw();
    void mousePressed(int x, int y, int button);
    void keyPressed(int key);
    void keyReleased(int key);
    void mouseDragged(int x, int y, int button);
    void mouseReleased(int x, int y, int button);
    void mem(int x, int y);
Louis James's avatar
Louis James committed
    vector<vector<int>> findPairs(vector<cv::Point3f> &blobs);
    bool bFullscreen;
    float xp1, yp1;
    int gwidth, gheight;
    bool corners;
    float mapx, mapy;
    shared_ptr<State> ss;