You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
570 B
23 lines
570 B
/*
|
|
* CameraSource example
|
|
* Based on the thought that ofxPiMapper should be as bare-bones as possible, thus all the source
|
|
* type functionality should come from outside.
|
|
* Update: still thinking whether the bare-bones approach is such a good idea. The less dependencies
|
|
* the better, of course.
|
|
* Created by Krisjanis Rijnieks on 25/01/2016
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "ofMain.h"
|
|
#include "ofxPiMapper.h"
|
|
#include "CameraSource.h"
|
|
|
|
class ofApp : public ofBaseApp {
|
|
public:
|
|
void setup();
|
|
void draw();
|
|
|
|
ofxPiMapper piMapper;
|
|
CameraSource * cameraSource;
|
|
};
|