-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHandDetector.cpp
276 lines (223 loc) · 10.5 KB
/
HandDetector.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include "HandDetector.h"
#include <iostream>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/core.hpp"
#include <vector>
#include <algorithm>
#include <cmath>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <cstdlib>
#include <ctime>
#include <QString>
using namespace std;
using namespace cv;
Mat3b dbg;
cv::Scalar RED(0, 0, 255);
cv::Scalar GREEN(255, 0, 0);
cv::Scalar BLUE(0, 255, 255);
cv::Scalar YELLOW(0, 225, 225);
HandDetector::HandDetector()
{
cout << "OpenCV version : " << CV_VERSION << endl;
cout << "Major version : " << CV_MAJOR_VERSION << endl;
cout << "Minor version : " << CV_MINOR_VERSION << endl;
cout << "Subminor version : " << CV_SUBMINOR_VERSION << endl;
}
HandDetector::~HandDetector()
{
}
void HandDetector::mouseTo(int x,int y) {
x = (x*1366)/600;
y = (y*768)/400;
if(sqrt( pow(x-prevx,2) + pow(y-prevy,2)) < 7) {
return;
}
prevx = x;
prevy = y;
Display *display = XOpenDisplay(0);
Window root = DefaultRootWindow(display);
XWarpPointer(display, None, root, 0, 0, 0, 0, x, y);
XFlush(display);
XCloseDisplay(display);
}
void HandDetector::mouseClick() {
int button=Button1;
Display *display = XOpenDisplay(NULL);
XEvent event;
if(display == NULL) {
cout<<"Error connecting to display"<<endl;
exit(EXIT_FAILURE);
}
memset(&event, 0x00, sizeof(event));
event.type = ButtonPress;
event.xbutton.button = button;
event.xbutton.same_screen = True;
XQueryPointer(display, RootWindow(display, DefaultScreen(display)), &event.xbutton.root, &event.xbutton.window, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
event.xbutton.subwindow = event.xbutton.window;
while(event.xbutton.subwindow) {
event.xbutton.window = event.xbutton.subwindow;
XQueryPointer(display, event.xbutton.window, &event.xbutton.root, &event.xbutton.subwindow, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
}
if(XSendEvent(display, PointerWindow, True, 0xfff, &event) == 0) cout<<"ERROR SENDING CLICK"<<endl;
XFlush(display);
XCloseDisplay(display);
}
//When called, it simulates a mouse release event at the current cursor location
void HandDetector::mouseRelease() {
int button=Button1;
Display *display = XOpenDisplay(NULL);
XEvent event;
if(display == NULL) {
cout<<"Error connecting to display"<<endl;
exit(EXIT_FAILURE);
}
memset(&event, 0x00, sizeof(event));
event.xbutton.button = button;
event.xbutton.same_screen = True;
XQueryPointer(display, RootWindow(display, DefaultScreen(display)), &event.xbutton.root, &event.xbutton.window, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
event.xbutton.subwindow = event.xbutton.window;
while(event.xbutton.subwindow) {
event.xbutton.window = event.xbutton.subwindow;
XQueryPointer(display, event.xbutton.window, &event.xbutton.root, &event.xbutton.subwindow, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
}
event.type = ButtonRelease;
event.xbutton.state = 0x100;
if(XSendEvent(display, PointerWindow, True, 0xfff, &event) == 0) cout<<"ERROR RELEASING"<<endl;
XFlush(display);
XCloseDisplay(display);
}
bool HandDetector::getAngle(Point s, Point f, Point e) {
float l1 = sqrt(fabs( pow(s.x-f.x,2) + pow(s.y-f.y,2) )) ;
float l2 = sqrt(fabs( pow(f.x-e.x,2) + pow(f.y-e.y,2) )) ;
float dot=(s.x-f.x)*(e.x-f.x) + (s.y-f.y)*(e.y-f.y);
float angle = acos(dot/(l1*l2));
angle=angle*180/M_PI;
return true;
}
void HandDetector::run() {
VideoCapture cap(1);
namedWindow("Control", CV_WINDOW_AUTOSIZE);
int iLowH = 0;
int iHighH = 39;
int iLowS = 46;
int iHighS = 230;
int iLowV = 0;
int iHighV = 244;
cvCreateTrackbar("LowH", "Control", &iLowH, 179);
cvCreateTrackbar("HighH", "Control", &iHighH, 179);
cvCreateTrackbar("LowS", "Control", &iLowS, 255);
cvCreateTrackbar("HighS", "Control", &iHighS, 255);
cvCreateTrackbar("LowV", "Control", &iLowV, 255);
cvCreateTrackbar("HighV", "Control", &iHighV, 255);
while(true) {
Mat imgOriginal;
Mat imgOriginal_true;
bool bSuccess = cap.read(imgOriginal);
imgOriginal.copyTo(imgOriginal_true);
//flip(imgOriginal, imgOriginal, 1);
Mat imgHSV;
cvtColor(imgOriginal, imgHSV, COLOR_BGR2HSV);
Mat imgThresholded;
Mat threshed;
inRange(imgHSV, Scalar(iLowH, iLowS, iLowV), Scalar(iHighH, iHighS, iHighV), imgThresholded);
erode(imgThresholded, imgThresholded, getStructuringElement(MORPH_ELLIPSE, Size(5, 5)) );
dilate( imgThresholded, imgThresholded, getStructuringElement(MORPH_ELLIPSE, Size(5, 5)) );
dilate( imgThresholded, imgThresholded, getStructuringElement(MORPH_ELLIPSE, Size(6, 6)) );
erode(imgThresholded, imgThresholded, getStructuringElement(MORPH_ELLIPSE, Size(6, 6)) );
inRange(imgHSV, Scalar(iLowH, iLowS, iLowV), Scalar(iHighH, iHighS, iHighV), threshed);
erode(threshed, threshed, getStructuringElement(MORPH_ELLIPSE, Size(5, 5)) );
dilate( threshed, threshed, getStructuringElement(MORPH_ELLIPSE, Size(5, 5)) );
dilate( threshed, threshed, getStructuringElement(MORPH_ELLIPSE, Size(6, 6)) );
erode(threshed, threshed, getStructuringElement(MORPH_ELLIPSE, Size(6, 6)) );
double largest_area = 0;
int largest_contour_index = 0;
Rect bounding_rect;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
findContours(imgThresholded, contours, hierarchy, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);
for(int i = 0; i < contours.size(); i++) {
double a = contourArea(contours[i], false);
if(a > largest_area) {
largest_area = a;
largest_contour_index = i;
bounding_rect = boundingRect(contours[i]);
}
}
if(contours.size() > 0 && contours[largest_contour_index].size() > 3) {
approxPolyDP( Mat(contours[largest_contour_index]), contours[largest_contour_index], 20, true );
drawContours(imgOriginal, contours,largest_contour_index, Scalar(0,255,255), 2);
//rectangle(imgOriginal, bounding_rect, Scalar(0,255,0), 1, 8, 0);
Moments mu = moments(contours[largest_contour_index], false);
Point2f mc = Point2f(mu.m10/mu.m00, mu.m01/mu.m00);
//mouseTo(mc.x, mc.y);
circle( imgOriginal, mc, 4, Scalar(0,255,0), -1, 8, 0 );
vector<Point> hull;
vector<int> hulli;
vector<Vec4i> defects;
vector<Vec4i> fingers;
convexHull(contours[largest_contour_index], hull, false);
vector<vector<Point> > hulls(1, hull);
drawContours(imgOriginal, hulls, -1, Scalar(255,0,0), 2);
convexHull(contours[largest_contour_index], hulli, false);
if(hulli.size() > 3) {
convexityDefects(contours[largest_contour_index], hulli, defects);
for(int i = 0; i < defects.size(); i++) {
if(defects[i][3] > 10000) {
if(getAngle(contours[largest_contour_index][defects[i][0]], contours[largest_contour_index][defects[i][2]], contours[largest_contour_index][defects[i][1]])) {
fingers.push_back(defects[i]);
}
}
}
if(fingers.size() > 0) {
reverse(fingers.begin(), fingers.end());
Point indexFinger = contours[largest_contour_index][fingers[0][0]];
for(int i = 0; i < fingers.size(); i++) {
if(contours[largest_contour_index][fingers[i][0]].y < indexFinger.y) {
indexFinger = contours[largest_contour_index][fingers[i][0]];
}
if(contours[largest_contour_index][fingers[i][1]].y < indexFinger.y) {
indexFinger = contours[largest_contour_index][fingers[i][1]];
}
circle(imgOriginal, contours[largest_contour_index][fingers[i][0]],5,Scalar(0,255,0),-1);
circle(imgOriginal, contours[largest_contour_index][fingers[i][1]],5,Scalar(0,255,0),-1);
circle(imgOriginal, contours[largest_contour_index][fingers[i][2]],5,Scalar(0,255,0),-1);
}
circle(imgOriginal, indexFinger,5,Scalar(0,0,0),-1);
//std::cout << "finger tip: " << indexFinger << std::endl;
cv::Mat img2(imgOriginal.rows,imgOriginal.cols,CV_8UC3);
float roi_width = 200;
float roi_height = 100;
float roi_x = indexFinger.x - roi_width/2;
float roi_y = indexFinger.y - roi_height-10;
if(indexFinger.x > 0 && indexFinger.y > 0) {
if(0 <= roi_x && 0 <= roi_width && roi_x + roi_width <= imgOriginal.cols && 0 <= roi_y && 0 <= roi_height && roi_y + roi_height <= imgOriginal.rows) {
imgOriginal(cv::Rect(roi_x,roi_y,roi_width,roi_height)).copyTo(img2);
//flip(img2, img2, 1);
imshow("MainWindow2", img2);
//char* out_msg = do_somgthing_with img2;
std::cout << "This is what I get." << std::endl;
m_string = "word tetected, time stamp is:" + QString::number(std::rand());
}
}
bool click = false;
if(fingers.size() == 1) {
//mouseTo(indexFinger.x, indexFinger.y);
//mouseRelease();
}
else if(fingers.size() == 2) {
//(indexFinger.x, indexFinger.y);
//mouseClick();
}
}
}
}
imshow("Thresholded Image", threshed); //show the thresholded image
imshow("Original", imgOriginal); //show the original image
if(waitKey(30) == 27) {
cout << "esc key is pressed" << endl;
break;
}
}
}