-
Notifications
You must be signed in to change notification settings - Fork 77
/
hand.c
330 lines (262 loc) · 8.1 KB
/
hand.c
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
* Simple hand detection algorithm based on OpenCV
*
* (C) Copyright 2012-2013 <b.galvani@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include <stdio.h>
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/highgui/highgui_c.h>
#define VIDEO_FILE "video.avi"
#define VIDEO_FORMAT CV_FOURCC('M', 'J', 'P', 'G')
#define NUM_FINGERS 5
#define NUM_DEFECTS 8
#define RED CV_RGB(255, 0, 0)
#define GREEN CV_RGB(0, 255, 0)
#define BLUE CV_RGB(0, 0, 255)
#define YELLOW CV_RGB(255, 255, 0)
#define PURPLE CV_RGB(255, 0, 255)
#define GREY CV_RGB(200, 200, 200)
struct ctx {
CvCapture *capture; /* Capture handle */
CvVideoWriter *writer; /* File recording handle */
IplImage *image; /* Input image */
IplImage *thr_image; /* After filtering and thresholding */
IplImage *temp_image1; /* Temporary image (1 channel) */
IplImage *temp_image3; /* Temporary image (3 channels) */
CvSeq *contour; /* Hand contour */
CvSeq *hull; /* Hand convex hull */
CvPoint hand_center;
CvPoint *fingers; /* Detected fingers positions */
CvPoint *defects; /* Convexity defects depth points */
CvMemStorage *hull_st;
CvMemStorage *contour_st;
CvMemStorage *temp_st;
CvMemStorage *defects_st;
IplConvKernel *kernel; /* Kernel for morph operations */
int num_fingers;
int hand_radius;
int num_defects;
};
void init_capture(struct ctx *ctx)
{
ctx->capture = cvCaptureFromCAM(0);
if (!ctx->capture) {
fprintf(stderr, "Error initializing capture\n");
exit(1);
}
ctx->image = cvQueryFrame(ctx->capture);
}
void init_recording(struct ctx *ctx)
{
int fps, width, height;
fps = cvGetCaptureProperty(ctx->capture, CV_CAP_PROP_FPS);
width = cvGetCaptureProperty(ctx->capture, CV_CAP_PROP_FRAME_WIDTH);
height = cvGetCaptureProperty(ctx->capture, CV_CAP_PROP_FRAME_HEIGHT);
if (fps < 0)
fps = 10;
ctx->writer = cvCreateVideoWriter(VIDEO_FILE, VIDEO_FORMAT, fps,
cvSize(width, height), 1);
if (!ctx->writer) {
fprintf(stderr, "Error initializing video writer\n");
exit(1);
}
}
void init_windows(void)
{
cvNamedWindow("output", CV_WINDOW_AUTOSIZE);
cvNamedWindow("thresholded", CV_WINDOW_AUTOSIZE);
cvMoveWindow("output", 50, 50);
cvMoveWindow("thresholded", 700, 50);
}
void init_ctx(struct ctx *ctx)
{
ctx->thr_image = cvCreateImage(cvGetSize(ctx->image), 8, 1);
ctx->temp_image1 = cvCreateImage(cvGetSize(ctx->image), 8, 1);
ctx->temp_image3 = cvCreateImage(cvGetSize(ctx->image), 8, 3);
ctx->kernel = cvCreateStructuringElementEx(9, 9, 4, 4, CV_SHAPE_RECT,
NULL);
ctx->contour_st = cvCreateMemStorage(0);
ctx->hull_st = cvCreateMemStorage(0);
ctx->temp_st = cvCreateMemStorage(0);
ctx->fingers = calloc(NUM_FINGERS + 1, sizeof(CvPoint));
ctx->defects = calloc(NUM_DEFECTS, sizeof(CvPoint));
}
void filter_and_threshold(struct ctx *ctx)
{
/* Soften image */
cvSmooth(ctx->image, ctx->temp_image3, CV_GAUSSIAN, 11, 11, 0, 0);
/* Remove some impulsive noise */
cvSmooth(ctx->temp_image3, ctx->temp_image3, CV_MEDIAN, 11, 11, 0, 0);
cvCvtColor(ctx->temp_image3, ctx->temp_image3, CV_BGR2HSV);
/*
* Apply threshold on HSV values to detect skin color
*/
cvInRangeS(ctx->temp_image3,
cvScalar(0, 55, 90, 255),
cvScalar(28, 175, 230, 255),
ctx->thr_image);
/* Apply morphological opening */
cvMorphologyEx(ctx->thr_image, ctx->thr_image, NULL, ctx->kernel,
CV_MOP_OPEN, 1);
cvSmooth(ctx->thr_image, ctx->thr_image, CV_GAUSSIAN, 3, 3, 0, 0);
}
void find_contour(struct ctx *ctx)
{
double area, max_area = 0.0;
CvSeq *contours, *tmp, *contour = NULL;
/* cvFindContours modifies input image, so make a copy */
cvCopy(ctx->thr_image, ctx->temp_image1, NULL);
cvFindContours(ctx->temp_image1, ctx->temp_st, &contours,
sizeof(CvContour), CV_RETR_EXTERNAL,
CV_CHAIN_APPROX_SIMPLE, cvPoint(0, 0));
/* Select contour having greatest area */
for (tmp = contours; tmp; tmp = tmp->h_next) {
area = fabs(cvContourArea(tmp, CV_WHOLE_SEQ, 0));
if (area > max_area) {
max_area = area;
contour = tmp;
}
}
/* Approximate contour with poly-line */
if (contour) {
contour = cvApproxPoly(contour, sizeof(CvContour),
ctx->contour_st, CV_POLY_APPROX_DP, 2,
1);
ctx->contour = contour;
}
}
void find_convex_hull(struct ctx *ctx)
{
CvSeq *defects;
CvConvexityDefect *defect_array;
int i;
int x = 0, y = 0;
int dist = 0;
ctx->hull = NULL;
if (!ctx->contour)
return;
ctx->hull = cvConvexHull2(ctx->contour, ctx->hull_st, CV_CLOCKWISE, 0);
if (ctx->hull) {
/* Get convexity defects of contour w.r.t. the convex hull */
defects = cvConvexityDefects(ctx->contour, ctx->hull,
ctx->defects_st);
if (defects && defects->total) {
defect_array = calloc(defects->total,
sizeof(CvConvexityDefect));
cvCvtSeqToArray(defects, defect_array, CV_WHOLE_SEQ);
/* Average depth points to get hand center */
for (i = 0; i < defects->total && i < NUM_DEFECTS; i++) {
x += defect_array[i].depth_point->x;
y += defect_array[i].depth_point->y;
ctx->defects[i] = cvPoint(defect_array[i].depth_point->x,
defect_array[i].depth_point->y);
}
x /= defects->total;
y /= defects->total;
ctx->num_defects = defects->total;
ctx->hand_center = cvPoint(x, y);
/* Compute hand radius as mean of distances of
defects' depth point to hand center */
for (i = 0; i < defects->total; i++) {
int d = (x - defect_array[i].depth_point->x) *
(x - defect_array[i].depth_point->x) +
(y - defect_array[i].depth_point->y) *
(y - defect_array[i].depth_point->y);
dist += sqrt(d);
}
ctx->hand_radius = dist / defects->total;
free(defect_array);
}
}
}
void find_fingers(struct ctx *ctx)
{
int n;
int i;
CvPoint *points;
CvPoint max_point;
int dist1 = 0, dist2 = 0;
ctx->num_fingers = 0;
if (!ctx->contour || !ctx->hull)
return;
n = ctx->contour->total;
points = calloc(n, sizeof(CvPoint));
cvCvtSeqToArray(ctx->contour, points, CV_WHOLE_SEQ);
/*
* Fingers are detected as points where the distance to the center
* is a local maximum
*/
for (i = 0; i < n; i++) {
int dist;
int cx = ctx->hand_center.x;
int cy = ctx->hand_center.y;
dist = (cx - points[i].x) * (cx - points[i].x) +
(cy - points[i].y) * (cy - points[i].y);
if (dist < dist1 && dist1 > dist2 && max_point.x != 0
&& max_point.y < cvGetSize(ctx->image).height - 10) {
ctx->fingers[ctx->num_fingers++] = max_point;
if (ctx->num_fingers >= NUM_FINGERS + 1)
break;
}
dist2 = dist1;
dist1 = dist;
max_point = points[i];
}
free(points);
}
void display(struct ctx *ctx)
{
int i;
if (ctx->num_fingers == NUM_FINGERS) {
#if defined(SHOW_HAND_CONTOUR)
cvDrawContours(ctx->image, ctx->contour, BLUE, GREEN, 0, 1,
CV_AA, cvPoint(0, 0));
#endif
cvCircle(ctx->image, ctx->hand_center, 5, PURPLE, 1, CV_AA, 0);
cvCircle(ctx->image, ctx->hand_center, ctx->hand_radius,
RED, 1, CV_AA, 0);
for (i = 0; i < ctx->num_fingers; i++) {
cvCircle(ctx->image, ctx->fingers[i], 10,
GREEN, 3, CV_AA, 0);
cvLine(ctx->image, ctx->hand_center, ctx->fingers[i],
YELLOW, 1, CV_AA, 0);
}
for (i = 0; i < ctx->num_defects; i++) {
cvCircle(ctx->image, ctx->defects[i], 2,
GREY, 2, CV_AA, 0);
}
}
cvShowImage("output", ctx->image);
cvShowImage("thresholded", ctx->thr_image);
}
int main(int argc, char **argv)
{
struct ctx ctx = { };
int key;
init_capture(&ctx);
init_recording(&ctx);
init_windows();
init_ctx(&ctx);
do {
ctx.image = cvQueryFrame(ctx.capture);
filter_and_threshold(&ctx);
find_contour(&ctx);
find_convex_hull(&ctx);
find_fingers(&ctx);
display(&ctx);
cvWriteFrame(ctx.writer, ctx.image);
key = cvWaitKey(1);
} while (key != 'q');
return 0;
}