RefractiveIndex/src/ShadowScapesAnalysis.cpp

149 lines
4.0 KiB
C++
Raw Normal View History

2012-01-24 15:13:07 +01:00
/*
- copyright (c) 2011 Copenhagen Institute of Interaction Design (CIID)
- all rights reserved.
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
+ redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ > redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ > redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ author: dviid
2012-01-24 16:52:22 +01:00
~ contact: dviid@labs.ciid.dk
2012-01-24 15:13:07 +01:00
*/
#include "ShadowScapesAnalysis.h"
#include "ofMain.h"
#include "Poco/Timer.h"
#include "Poco/Thread.h"
#include "RefractiveIndex.h"
using Poco::Timer;
using Poco::TimerCallback;
using Poco::Thread;
#define STATE_SCAN 0
#define STATE_ANALYSIS 1
void ShadowScapesAnalysis::setup(int camWidth, int camHeight)
{
2012-02-11 18:54:46 +01:00
create_dir();
2012-01-24 15:13:07 +01:00
_speed = 300;
}
void ShadowScapesAnalysis::acquire()
2012-01-24 15:13:07 +01:00
{
int w;
if(_dir == H) w = ofGetWidth();
else if(_dir == V) w = ofGetHeight();
_step = ((w / _speed) * 1000) / 50;
_line = 0;
Timer scan_timer(0, 50);
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
TimerCallback<ShadowScapesAnalysis> strobe_callback(*this, &ShadowScapesAnalysis::scan_cb);
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
_state = STATE_SCAN;
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
scan_timer.start(strobe_callback);
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
while(_state != STATE_ANALYSIS)
Thread::sleep(5);
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
scan_timer.stop();
// do analysis here
2012-01-24 16:52:22 +01:00
// go back to the files i've saved and do the math here -
2012-01-24 15:13:07 +01:00
2012-02-11 18:54:46 +01:00
/*
2012-01-24 15:13:07 +01:00
while(_state != STATE_STOP)
Thread::sleep(100);
2012-02-11 18:54:46 +01:00
*/
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
}
void ShadowScapesAnalysis::synthesise()
2012-01-24 15:13:07 +01:00
{
// _saved_filenames has all the file names of all the saved images
}
2012-01-24 16:52:22 +01:00
// the animation draw - and the output draw
void ShadowScapesAnalysis::draw()
{
switch (_state) {
case STATE_ACQUIRING:
{
static int _pos;
if(_state == STATE_ANALYSIS) {
ofSetColor(0, 200, 0);
ofRect(0, 0, ofGetWidth(), ofGetHeight());
return;
}
if(_state == STATE_SCAN) {
if(_pos != _line) {
//take snap??
_pos = _line;
}
ofSetColor(255, 255, 255);
if(_dir == H) ofRect(_pos, 0, 50, ofGetHeight());
else if(_dir == V) ofRect(0, _pos, ofGetWidth(), 50);
}
break;
2012-01-24 15:13:07 +01:00
}
case STATE_SYNTHESISING:
{
// display animation of something while the synthesis in on-going...
break;
}
case STATE_DISPLAY_RESULTS:
{
// display results of the synthesis
break;
}
default:
break;
}
2012-01-24 16:52:22 +01:00
2012-01-24 15:13:07 +01:00
}
void ShadowScapesAnalysis::scan_cb(Timer& timer)
{
_line += _step;
2012-01-24 16:52:22 +01:00
if((_dir == H && _line >= ofGetWidth()) ||
(_dir == V && _line >= ofGetHeight())) {
2012-01-24 15:13:07 +01:00
_state = STATE_ANALYSIS;
}
}