-
Notifications
You must be signed in to change notification settings - Fork 160
/
take_pictures_contrib.c
408 lines (348 loc) · 11.6 KB
/
take_pictures_contrib.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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/* V4L2 video picture grabber
Copyright (C) 2009 Mauro Carvalho Chehab <[email protected]>
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 version 2 of the License.
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.
*/
/*
Convert camera to a few ppms.
Adapted from official git tree: https://git.linuxtv.org/v4l-utils.git v4l-utils-1.10.0 contrib/test/v4l2grab.c
*/
#define _XOPEN_SOURCE 700
#include <argp.h>
#include <errno.h>
#include <fcntl.h>
#include <libv4l2.h>
#include <linux/videodev2.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#define CLEAR_P(x,s) memset((x), 0, s)
#define CLEAR(x) CLEAR_P(&(x), sizeof(x))
struct buffer {
void *start;
size_t length;
};
static void xioctl(int fh, unsigned long int request, void *arg)
{
int r;
do {
r = v4l2_ioctl(fh, request, arg);
} while (r == -1 && ((errno == EINTR) || (errno == EAGAIN)));
if (r == -1) {
fprintf(stderr, "%s(%lu): error %d, %s\n", __func__,
_IOC_NR(request), errno, strerror(errno));
exit(EXIT_FAILURE);
}
}
/* Used by the multi thread capture version */
struct buffer_queue {
struct v4l2_buffer *buffers;
int buffers_size;
int read_pos;
int write_pos;
int n_frames;
int fd;
pthread_mutex_t mutex;
pthread_cond_t buffer_cond;
};
/* Gets a buffer and puts it in the buffers list at write position, then
* notifies the consumer that a new buffer is ready to be used */
static void *produce_buffer (void * p)
{
struct buffer_queue *bq;
fd_set fds;
struct timeval tv;
int i;
struct v4l2_buffer *buf;
int r;
bq = p;
for (i = 0; i < bq->n_frames; i++) {
printf ("Prod: %d\n", i);
buf = &bq->buffers[bq->write_pos % bq->buffers_size];
do {
FD_ZERO(&fds);
FD_SET(bq->fd, &fds);
/* Timeout. */
tv.tv_sec = 2;
tv.tv_usec = 0;
r = select(bq->fd + 1, &fds, NULL, NULL, &tv);
} while ((r == -1 && (errno == EINTR)));
if (r == -1) {
perror("select");
pthread_exit (NULL);
return NULL;
}
CLEAR_P(buf, sizeof(struct v4l2_buffer));
buf->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf->memory = V4L2_MEMORY_MMAP;
xioctl(bq->fd, VIDIOC_DQBUF, buf);
pthread_mutex_lock (&bq->mutex);
bq->write_pos++;
printf ("Prod: %d (done)\n", i);
pthread_cond_signal (&bq->buffer_cond);
pthread_mutex_unlock (&bq->mutex);
}
pthread_exit (NULL);
}
/* will create a separate thread that will produce the buffers and put
* into a circular array while this same thread will get the buffers from
* this array and 'render' them */
static int capture_threads (int fd, struct buffer *buffers, int bufpool_size,
struct v4l2_format fmt, int n_frames,
char *out_dir, int sleep_ms)
{
struct v4l2_buffer buf;
unsigned int i;
struct buffer_queue buf_queue;
pthread_t producer;
char out_name[25 + strlen(out_dir)];
FILE *fout;
struct timespec sleeptime;
if (sleep_ms) {
sleeptime.tv_sec = sleep_ms / 1000;
sleeptime.tv_nsec = (sleep_ms % 1000) * 1000000;
}
buf_queue.buffers_size = bufpool_size * 2;
buf_queue.buffers = calloc(buf_queue.buffers_size,
sizeof(struct v4l2_buffer));
buf_queue.fd = fd;
buf_queue.read_pos = 0;
buf_queue.write_pos = 0;
buf_queue.n_frames = n_frames;
pthread_mutex_init (&buf_queue.mutex, NULL);
pthread_cond_init (&buf_queue.buffer_cond, NULL);
pthread_create (&producer, NULL, produce_buffer, &buf_queue);
for (i = 0; i < n_frames; i++) {
printf ("Read: %d\n", i);
/* wait for a buffer to be available in the queue */
pthread_mutex_lock (&buf_queue.mutex);
while (buf_queue.read_pos == buf_queue.write_pos) {
pthread_cond_wait (&buf_queue.buffer_cond,
&buf_queue.mutex);
}
pthread_mutex_unlock (&buf_queue.mutex);
if (sleep_ms)
nanosleep (&sleeptime, NULL);
sprintf(out_name, "%s/out%03d.ppm", out_dir, i);
fout = fopen(out_name, "w");
if (!fout) {
perror("Cannot open image");
exit(EXIT_FAILURE);
}
fprintf(fout, "P6\n%d %d 255\n",
fmt.fmt.pix.width, fmt.fmt.pix.height);
buf = buf_queue.buffers[buf_queue.read_pos %
buf_queue.buffers_size];
fwrite(buffers[buf.index].start, buf.bytesused, 1, fout);
fclose(fout);
xioctl(fd, VIDIOC_QBUF, &buf);
pthread_mutex_lock (&buf_queue.mutex);
buf_queue.read_pos++;
printf ("Read: %d (done)\n", i);
pthread_cond_signal (&buf_queue.buffer_cond);
pthread_mutex_unlock (&buf_queue.mutex);
}
pthread_mutex_destroy (&buf_queue.mutex);
pthread_cond_destroy (&buf_queue.buffer_cond);
free (buf_queue.buffers);
return 0;
}
static int capture_loop (int fd, struct buffer *buffers, struct v4l2_format fmt,
int n_frames, char *out_dir)
{
struct v4l2_buffer buf;
unsigned int i;
struct timeval tv;
int r;
fd_set fds;
FILE *fout;
char out_name[25 + strlen(out_dir)];
for (i = 0; i < n_frames; i++) {
do {
FD_ZERO(&fds);
FD_SET(fd, &fds);
/* Timeout. */
tv.tv_sec = 2;
tv.tv_usec = 0;
r = select(fd + 1, &fds, NULL, NULL, &tv);
} while ((r == -1 && (errno == EINTR)));
if (r == -1) {
perror("select");
return errno;
}
CLEAR(buf);
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;
xioctl(fd, VIDIOC_DQBUF, &buf);
sprintf(out_name, "%s/out%03d.ppm", out_dir, i);
fout = fopen(out_name, "w");
if (!fout) {
perror("Cannot open image");
exit(EXIT_FAILURE);
}
fprintf(fout, "P6\n%d %d 255\n",
fmt.fmt.pix.width, fmt.fmt.pix.height);
fwrite(buffers[buf.index].start, buf.bytesused, 1, fout);
fclose(fout);
xioctl(fd, VIDIOC_QBUF, &buf);
}
return 0;
}
static int capture(char *dev_name, int x_res, int y_res, int n_frames,
char *out_dir, int block, int threads, int sleep_ms)
{
struct v4l2_format fmt;
struct v4l2_buffer buf;
struct v4l2_requestbuffers req;
enum v4l2_buf_type type;
int fd = -1;
unsigned int i, n_buffers;
struct buffer *buffers;
if (block)
fd = v4l2_open(dev_name, O_RDWR, 0);
else
fd = v4l2_open(dev_name, O_RDWR | O_NONBLOCK, 0);
if (fd < 0) {
perror("Cannot open device");
exit(EXIT_FAILURE);
}
CLEAR(fmt);
fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
fmt.fmt.pix.width = x_res;
fmt.fmt.pix.height = y_res;
fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_RGB24;
fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
xioctl(fd, VIDIOC_S_FMT, &fmt);
if (fmt.fmt.pix.pixelformat != V4L2_PIX_FMT_RGB24) {
printf("Libv4l didn't accept RGB24 format. Can't proceed.\n");
exit(EXIT_FAILURE);
}
if ((fmt.fmt.pix.width != x_res) || (fmt.fmt.pix.height != y_res))
printf("Warning: driver is sending image at %dx%d\n",
fmt.fmt.pix.width, fmt.fmt.pix.height);
CLEAR(req);
req.count = 2;
req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
req.memory = V4L2_MEMORY_MMAP;
xioctl(fd, VIDIOC_REQBUFS, &req);
buffers = calloc(req.count, sizeof(*buffers));
for (n_buffers = 0; n_buffers < req.count; ++n_buffers) {
CLEAR(buf);
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;
buf.index = n_buffers;
xioctl(fd, VIDIOC_QUERYBUF, &buf);
buffers[n_buffers].length = buf.length;
buffers[n_buffers].start = v4l2_mmap(NULL, buf.length,
PROT_READ | PROT_WRITE, MAP_SHARED,
fd, buf.m.offset);
if (MAP_FAILED == buffers[n_buffers].start) {
perror("mmap");
exit(EXIT_FAILURE);
}
}
for (i = 0; i < n_buffers; ++i) {
CLEAR(buf);
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;
buf.index = i;
xioctl(fd, VIDIOC_QBUF, &buf);
}
type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
xioctl(fd, VIDIOC_STREAMON, &type);
if (threads)
capture_threads(fd, buffers, 2, fmt, n_frames, out_dir,
sleep_ms);
else
capture_loop(fd, buffers, fmt, n_frames, out_dir);
type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
xioctl(fd, VIDIOC_STREAMOFF, &type);
for (i = 0; i < n_buffers; ++i)
v4l2_munmap(buffers[i].start, buffers[i].length);
v4l2_close(fd);
return 0;
}
static const char doc[] = "\nCapture images using libv4l, storing them as ppm files\n";
static const struct argp_option options[] = {
{"device", 'd', "DEV", 0, "video device (default: /dev/video0)", 0},
{"out-dir", 'o', "OUTDIR", 0, "output directory (default: current dir)", 0},
{"xres", 'x', "XRES", 0, "horizontal resolution", 0},
{"yres", 'y', "YRES", 0, "vertical resolution", 0},
{"n-frames", 'n', "NFRAMES", 0, "number of frames to capture", 0},
{"thread-enable", 't', "THREADS", 0, "if different threads should capture and save", 0},
{"blockmode-enable", 'b', "BLOCKMODE", 0, "if blocking mode should be used", 0},
{"sleep-time", 's', "SLEEP", 0, "how long should the consumer thread sleep to simulate the processing of a buffer (in ms)"},
{ 0, 0, 0, 0, 0, 0 }
};
/* Static vars to store the parameters */
static char *dev_name = "/dev/video0";
static char *out_dir = ".";
static int x_res = 640;
static int y_res = 480;
static int n_frames = 20;
static int threads = 0;
static int block = 0;
static int sleep_ms = 0;
static error_t parse_opt(int k, char *arg, struct argp_state *state)
{
int val;
switch (k) {
case 'd':
dev_name = arg;
break;
case 'o':
out_dir = arg;
break;
case 'x':
val = atoi(arg);
if (val)
x_res = val;
break;
case 'y':
val = atoi(arg);
if (val)
y_res = val;
break;
case 'n':
val = atoi(arg);
if (val)
n_frames = val;
break;
case 't':
threads = 1;
break;
case 'b':
block = 1;
break;
case 's':
val = atoi(arg);
if (val)
sleep_ms = val;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static struct argp argp = {
.options = options,
.parser = parse_opt,
.doc = doc,
};
int main(int argc, char **argv)
{
argp_parse(&argp, argc, argv, 0, 0, 0);
return capture(dev_name, x_res, y_res, n_frames, out_dir, block,
threads, sleep_ms);
}