-
Notifications
You must be signed in to change notification settings - Fork 0
/
gorgone.cpp
213 lines (187 loc) · 5.05 KB
/
gorgone.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#include "gorgone.h"
using namespace cv;
using namespace ofxCv;
int accum = 0;
void gorgone::setup()
{
ofSetLogLevel(OF_LOG_NOTICE);
masterIp = "Mac-Pro-de-10-52.local";
appName = "gorgone-1";
parseCmdLineOptions();
vidGrabber.setup(filename);
svgInterp.setup();
jamoma.setup((void*) this, appName, masterIp);
motionDetector.setup(&jamoma);
irisDetector.setJamomaRef(&jamoma);
counter = 0;
}
void gorgone::exit(){
setPwm(0);
#ifdef TARGET_RASPBERRY_PI
vidGrabber.led.switchOffIR();
#endif
}
void gorgone::update()
{
ofLogVerbose("gorgone") << ofGetFrameRate() << " fps" << endl;
vidGrabber.update();
if ( vidGrabber.isFrameNew() ){
frame = vidGrabber.getFrame();
if ( bMotion ){
motionDetector.update(frame);
}
if( bTracking ){
if ( frame.cols == 0 ) return;
cv::Mat gray;
if ( frame.channels() == 1 ){
gray = frame.clone();
} else {
cv::cvtColor(frame, gray, CV_RGB2GRAY);
}
ofLogVerbose("gorgone") << "new frame to process : " << gray.cols << "x" << gray.rows << endl;
if ( irisDetector.updateBool(gray) ){
jamoma.mIrisDetectedReturn.set("value", "bang");
}
}
}
if (bComputeCode) {
irisDetector.computeCode();
bComputeCode=false;
jamoma.mComputeIrisCodeParameter.set("value", bComputeCode);
/*
// desactivated because Max doesn't handle list longer than 256 item, yes this still happens in 2015...
TTValue v;
Mat code = irisDetector.getIrisCode();
v.push_back(code.cols);
v.push_back(code.rows);
uchar* p;
for (int i = 0; i < code.rows; i++ ){
p=code.ptr<uchar>(i);
for (int j = 0; j < code.cols; j++ ){
v.push_back((int) p[j]);
}
}
cout << "v size : " << v.size() << endl;
jamoma.mTrackingIrisCodeReturn.set("value",v);
*/
}
Mat img = irisDetector.getIrisCode();
if( bDisplaying && irisDetector.newCode && img.total() > 0 ) {
if ( irisDetector.newCode ){
svgInterp.coeff.clear();
ofLogVerbose("gorgone") << "code image resolution : " << img.cols << "x" << img.rows << endl;
uchar* p;
for (int i = 0; i < img.rows; i++ ){
float avg=0;
p=img.ptr<uchar>(i);
for (int j = 0; j < img.cols; j++ ){
avg+=p[j] / 255.;
}
avg/=img.cols;
svgInterp.coeff.push_back(avg);
}
irisDetector.newCode = false;
TTValue v;
for (int i = 0; i<svgInterp.coeff.size(); i++){
v.push_back(svgInterp.coeff[i]);
}
jamoma.mDrawingCoeffParameter.set("value", v);
svgInterp.dirtyFlag = true;
}
}
}
void gorgone::draw()
{
//vidGrabber.draw(0,0);
drawMat(frame,0,0);
if ( svgInterp.updateBool() ){
TTValue x,y;
ofPolyline line = svgInterp.interpolatedLine;
for (int i=0; i<line.size(); i++){
x.push_back(line[i].x);
y.push_back(line[i].y);
}
jamoma.mDrawingShapeXReturn.set("value", x);
jamoma.mDrawingShapeYReturn.set("value", y);
}
if ( bTracking )
irisDetector.drawEyes();
if ( bDisplaying )
svgInterp.draw();
}
void gorgone::keyPressed(int key)
{
ofLogVerbose("gorgone") << "keypressed : " << key << endl;
switch (key){
case 's':
irisDetector.save();
break;
case ' ':
irisDetector.reset();
break;
case 'c':
bComputeCode=true;
break;
case 'm':
bMotion = !bMotion;
break;
case 't':
bTracking = !bTracking;
if ( bTracking ) irisDetector.reset();
#ifdef TARGET_RASPBERRY_PI
if ( bTracking ) vidGrabber.led.switchOnIR();
else vidGrabber.led.switchOffIR();
#endif
break;
case 'd':
bDisplaying = !bDisplaying;
break;
#ifdef TARGET_RASPBERRY_PI
case 'i':
vidGrabber.led.switchOnIR();
break;
case 'o':
vidGrabber.led.switchOffIR();
break;
case 'w':
vidGrabber.led.switchOnWhite();
break;
case 'x':
vidGrabber.led.switchOffWhite();
break;
#endif
case 357 : // arrow up
svgInterp.selectedId = counter++;
break;
case 359: // arrow down
svgInterp.selectedId = counter--;
break;
default :
break;
}
}
void gorgone::messageReceived(ofMessage& message)
{
}
void gorgone::parseCmdLineOptions(){
vector<string> keys = ofxArgParser::allKeys();
for (int i = 0; i < keys.size(); i++) {
if ( keys[i] == "f" ) filename = ofxArgParser::getValue(keys[i]);
else if ( keys[i] == "name" ) appName = ofxArgParser::getValue(keys[i]);
else if ( keys[i] == "masterIp" ) masterIp = ofxArgParser::getValue(keys[i]);
else if ( keys[i] == "verbose" ) { // vebose level, value : 0..5, default 1 (OF_LOG_NOTICE)
int logLevel;
istringstream( ofxArgParser::getValue(keys[i]) ) >> logLevel;
ofSetLogLevel((ofLogLevel) logLevel);
}
ofLogNotice("gorgone") << "key: " << keys[i] << ", value: " << ofxArgParser::getValue(keys[i]) << endl;
}
}
void gorgone::setPwm(float pc){
#ifdef TARGET_RASPBERRY_PI
ofstream file;
file.open("/dev/servoblaster", ios::in);
file << "0=" << pc << "%" << endl;
file.close();
#endif
}