146 lines
3.7 KiB
C++
Executable File
146 lines
3.7 KiB
C++
Executable File
/*
|
|
~ author: dviid
|
|
~ contact: dviid@labs.ciid.dk
|
|
*/
|
|
|
|
#include "ColorSingleAnalysis.h"
|
|
#include "ofMain.h"
|
|
|
|
#include "Poco/Timer.h"
|
|
#include "Poco/Thread.h"
|
|
|
|
#include "RefractiveIndex.h"
|
|
|
|
using Poco::Timer;
|
|
using Poco::TimerCallback;
|
|
using Poco::Thread;
|
|
|
|
|
|
void ColorSingleAnalysis::setup(int camWidth, int camHeight)
|
|
{
|
|
// HERE IS WHERE WE SETUP THE DIRECTORY FOR ALL THE SAVED IMAGES
|
|
|
|
//FOR WINDOWS i HAVE HAD TO REPLACE SPACES WITH UNDERSCORES AND REDUCE THE LENGTH OF THE FOLDER NAME
|
|
time_t rawtime;
|
|
struct tm * timeinfo;
|
|
|
|
time ( &rawtime );
|
|
timeinfo = localtime ( &rawtime );
|
|
string time = asctime(timeinfo);
|
|
string replaceTime = "";
|
|
|
|
//DON'T INCLUDE THE DAY IN WORDS EG 'TUE' OR THE YEAR EG 2012 THIS MAKES THE DIRECTORY NAME TOO LONG AND CAUSES DIR CREATION TO FAIL
|
|
for(int i=4;i<time.size()-4;i++){
|
|
if(time.at(i)==' '||time.at(i)==':'){
|
|
replaceTime+="_";
|
|
}
|
|
else{
|
|
replaceTime+=time.at(i);
|
|
}
|
|
}
|
|
|
|
ofDirectory dir;
|
|
|
|
_whole_file_path= string(ANALYSIS_PATH)+RefractiveIndex::_location+"/"+ _name+"/"+replaceTime ;
|
|
//directories have to be created one level at a time hence repeated calls
|
|
if(!dir.doesDirectoryExist(_whole_file_path)){
|
|
dir.createDirectory(string(ANALYSIS_PATH)+RefractiveIndex::_location+"/", true,false);
|
|
dir.createDirectory(string(ANALYSIS_PATH)+RefractiveIndex::_location+"/"+ _name+"/", true,false);
|
|
dir.createDirectory(string(ANALYSIS_PATH)+RefractiveIndex::_location+"/"+ _name+"/"+replaceTime+"/", true,false);
|
|
}
|
|
|
|
//////////////////////////////END DIRECTORY CREATION //////////////////////////////////////////////////
|
|
_frame_cnt = 0;
|
|
_frame_cnt_max = ofGetFrameRate() * ((DELTA_T_SAVE * NUM_SAVE_PER_RUN) / 1000);
|
|
r = 0;
|
|
g = 0;
|
|
b = 0;
|
|
}
|
|
|
|
|
|
void ColorSingleAnalysis::synthesize()
|
|
{
|
|
|
|
Timer* save_timer;
|
|
|
|
TimerCallback<ColorSingleAnalysis> save_callback(*this, &ColorSingleAnalysis::save_cb);
|
|
|
|
// RUN ROUTINE
|
|
for(int i = 0; i < NUM_RUN; i++) {
|
|
|
|
_run_cnt = i;
|
|
|
|
cout << "RUN NUM = " << i;
|
|
|
|
save_timer = new Timer(0, DELTA_T_SAVE); // timing interval for saving files
|
|
save_timer->start(save_callback);
|
|
_RUN_DONE = false;
|
|
_frame_cnt = 0; _save_cnt = 0;
|
|
|
|
while(!_RUN_DONE)
|
|
Thread::sleep(3);
|
|
|
|
save_timer->stop();
|
|
}
|
|
}
|
|
|
|
void ColorSingleAnalysis::gui_attach(ofxControlPanel* gui)
|
|
{
|
|
|
|
}
|
|
|
|
void ColorSingleAnalysis::gui_detach()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void ColorSingleAnalysis::draw()
|
|
{
|
|
|
|
float one_third_of_frame_count_max=_frame_cnt_max/3;
|
|
if (_frame_cnt < one_third_of_frame_count_max){
|
|
r=255.0;
|
|
g=0.0;
|
|
b=0.0;
|
|
ofSetColor(r,g,b);
|
|
ofRect(0, 0, ofGetWidth(), ofGetHeight());
|
|
}
|
|
if (_frame_cnt >= one_third_of_frame_count_max && _frame_cnt < 2*one_third_of_frame_count_max){
|
|
r=0.0;
|
|
g=255.0;
|
|
b=0.0;
|
|
ofSetColor(r,g,b);
|
|
ofRect(0, 0, ofGetWidth(), ofGetHeight());
|
|
}
|
|
if (_frame_cnt >= 2*one_third_of_frame_count_max && _frame_cnt < _frame_cnt_max){
|
|
r=0.0;
|
|
g=0.0;
|
|
b=255.0;
|
|
ofSetColor(r,g,b);
|
|
ofRect(0, 0, ofGetWidth(), ofGetHeight());
|
|
}
|
|
|
|
_frame_cnt++;
|
|
|
|
|
|
}
|
|
|
|
// this runs at save_cb timer rate = DELTA_T_SAVE
|
|
void ColorSingleAnalysis::save_cb(Timer& timer)
|
|
{
|
|
_save_cnt++;
|
|
|
|
|
|
cout << "ColorSingleAnalysis::saving...\n";
|
|
string file_name =ofToString(_frame_cnt,2)+"_"+ofToString((int)r,2)+"_"+ofToString((int)g,2)+"_"+ofToString((int)b,2)+"_"+ofToString(_run_cnt,2)+".jpg";
|
|
|
|
|
|
ofSaveImage(RefractiveIndex::_pixels, _whole_file_path+"/"+file_name, OF_IMAGE_QUALITY_BEST);
|
|
cout<<_whole_file_path+"/"+file_name<<endl;
|
|
|
|
if(_save_cnt >= NUM_SAVE_PER_RUN)
|
|
_RUN_DONE = true;
|
|
|
|
}
|