2019-05-25 17:02:30 +02:00
|
|
|
/* V4L2 video picture grabber
|
2019-05-28 11:56:02 +02:00
|
|
|
|
|
|
|
Origin :V4L2GRAB.C - patched by tTh
|
|
|
|
|
2019-05-25 17:02:30 +02:00
|
|
|
Copyright (C) 2009 Mauro Carvalho Chehab <mchehab@infradead.org>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-05-28 11:56:02 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <linux/videodev2.h>
|
|
|
|
#include <libv4l2.h>
|
|
|
|
|
2019-05-28 12:10:55 +02:00
|
|
|
#include "../floatimg.h"
|
2019-08-10 18:37:52 +02:00
|
|
|
#include "funcs.h"
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
/* compilation control */
|
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
#define SAVE_AS_CUMUL 1
|
2019-08-10 18:37:52 +02:00
|
|
|
#define SAVE_AS_PNM 0
|
2019-08-10 21:26:39 +02:00
|
|
|
#define SAVE_AS_FIMG 0
|
2019-08-10 18:37:52 +02:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
|
2019-05-28 11:56:02 +02:00
|
|
|
#define CLEAR(x) memset(&(x), 0, sizeof(x))
|
|
|
|
|
|
|
|
struct buffer {
|
|
|
|
void *start;
|
|
|
|
size_t length;
|
|
|
|
};
|
2019-05-25 17:02:30 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
int verbosity;
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void xioctl(int fh, 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, "error %d, %s\n", errno, strerror(errno));
|
2019-07-20 04:09:39 +02:00
|
|
|
sleep(1);
|
2019-05-27 17:11:43 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
void help(int v)
|
|
|
|
{
|
2019-08-12 22:20:25 +02:00
|
|
|
if (verbosity) {
|
|
|
|
printf("compiled %s at %s\n", __DATE__, __TIME__);
|
|
|
|
}
|
2019-05-27 17:11:43 +02:00
|
|
|
puts("options :");
|
|
|
|
puts("\t-d /dev/?\tselect video device");
|
2019-09-02 11:47:51 +02:00
|
|
|
puts("\t-g\t\tconvert to gray");
|
2019-05-27 17:11:43 +02:00
|
|
|
puts("\t-n NNN\t\thow many frames ?");
|
2019-05-28 14:55:40 +02:00
|
|
|
puts("\t-O ./\t\tset Output dir");
|
2019-08-12 22:20:25 +02:00
|
|
|
puts("\t-o bla\t\tset output filename");
|
2019-09-03 15:37:49 +02:00
|
|
|
puts("\t-p NN.N\t\tperiod in seconds");
|
2019-09-02 04:31:27 +02:00
|
|
|
puts("\t-s WxH\t\tsize of capture");
|
2019-09-03 15:37:49 +02:00
|
|
|
puts("\t-u\t\ttry upscaling...");
|
2019-05-27 17:11:43 +02:00
|
|
|
puts("\t-v\t\tincrease verbosity");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|
2019-05-25 17:02:30 +02:00
|
|
|
|
2019-05-28 11:56:02 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct v4l2_format fmt;
|
|
|
|
struct v4l2_buffer buf;
|
|
|
|
struct v4l2_requestbuffers req;
|
|
|
|
enum v4l2_buf_type type;
|
|
|
|
fd_set fds;
|
|
|
|
struct timeval tv;
|
|
|
|
int r, fd = -1;
|
|
|
|
unsigned int i, n_buffers;
|
|
|
|
char *dev_name = "/dev/video0";
|
2019-08-14 19:29:11 +02:00
|
|
|
|
2019-05-28 11:56:02 +02:00
|
|
|
FILE *fout;
|
|
|
|
struct buffer *buffers;
|
|
|
|
|
2019-08-10 18:37:52 +02:00
|
|
|
int foo, bar;
|
2019-08-14 19:29:11 +02:00
|
|
|
double period = 10.0; /* delai entre les captures */
|
2019-05-28 11:56:02 +02:00
|
|
|
int nbre_capt = 1; /* nombre de captures */
|
|
|
|
int opt;
|
2019-09-02 04:31:27 +02:00
|
|
|
int width = 640;
|
|
|
|
int height = 480;
|
2019-08-14 19:29:11 +02:00
|
|
|
double t_final;
|
2019-09-02 11:47:51 +02:00
|
|
|
int to_gray = 0;
|
2019-09-03 15:37:49 +02:00
|
|
|
int upscaling = 0;
|
2019-05-28 14:58:58 +02:00
|
|
|
char *dest_dir = "."; /* no trailing slash */
|
2019-08-10 21:26:39 +02:00
|
|
|
char *outfile = "out.pnm";
|
2019-05-27 17:11:43 +02:00
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
#if SAVE_AS_CUMUL
|
2019-09-03 15:37:49 +02:00
|
|
|
FloatImg cumul;
|
2019-08-10 21:26:39 +02:00
|
|
|
#endif
|
|
|
|
|
2019-09-03 15:37:49 +02:00
|
|
|
while ((opt = getopt(argc, argv, "d:ghn:o:O:p:s:uv")) != -1) {
|
2019-05-27 17:11:43 +02:00
|
|
|
switch(opt) {
|
|
|
|
case 'd': dev_name = optarg; break;
|
2019-09-02 11:47:51 +02:00
|
|
|
case 'g': to_gray = 1; break;
|
2019-05-27 17:11:43 +02:00
|
|
|
case 'h': help(0); break;
|
|
|
|
case 'n': nbre_capt = atoi(optarg); break;
|
2019-05-28 14:55:40 +02:00
|
|
|
case 'O': dest_dir = optarg; break;
|
2019-08-10 21:26:39 +02:00
|
|
|
case 'o': outfile = optarg; break;
|
2019-09-16 12:28:47 +02:00
|
|
|
case 'p': foo = parse_double(optarg, &period);
|
|
|
|
if (foo<0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"error parsing -p arg '%s'\n",
|
|
|
|
optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
2019-09-16 16:27:01 +02:00
|
|
|
period *= 1e6;
|
2019-09-16 12:28:47 +02:00
|
|
|
break;
|
2019-09-03 15:37:49 +02:00
|
|
|
case 's': parse_WxH(optarg, &width, &height);
|
|
|
|
break;
|
|
|
|
case 'u': upscaling = 1; break;
|
2019-05-27 17:11:43 +02:00
|
|
|
case 'v': verbosity++; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 07:07:38 +02:00
|
|
|
if (verbosity) {
|
|
|
|
fprintf(stderr, "running %s pid=%d\n", argv[0], getpid());
|
2019-09-07 11:46:50 +02:00
|
|
|
fprintf(stderr, "period is %.3f milliseconds\n", period/1e3);
|
2019-09-02 04:31:27 +02:00
|
|
|
fprintf(stderr, "framesize is %dx%d\n", width, height);
|
2019-09-17 11:21:20 +02:00
|
|
|
fprintf(stderr, "upscaling is %s\n", upscaling ? "on" : "off");
|
2019-07-02 07:07:38 +02:00
|
|
|
}
|
2019-05-27 17:11:43 +02:00
|
|
|
|
|
|
|
fd = v4l2_open(dev_name, O_RDWR | O_NONBLOCK, 0);
|
|
|
|
if (fd < 0) {
|
2019-07-20 04:09:39 +02:00
|
|
|
perror(dev_name);
|
2019-05-27 17:11:43 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
CLEAR(fmt);
|
|
|
|
fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
2019-09-02 04:31:27 +02:00
|
|
|
fmt.fmt.pix.width = width;
|
|
|
|
fmt.fmt.pix.height = height;
|
2019-05-27 17:11:43 +02:00
|
|
|
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) {
|
2019-09-02 11:47:51 +02:00
|
|
|
/* are others formats usable ? */
|
2019-05-27 17:11:43 +02:00
|
|
|
printf("Libv4l didn't accept RGB24 format. Can't proceed.\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2019-09-02 04:31:27 +02:00
|
|
|
if ((fmt.fmt.pix.width != width) || (fmt.fmt.pix.height != height)) {
|
2019-05-27 17:11:43 +02:00
|
|
|
printf("Warning: driver is sending image at %dx%d\n",
|
2019-05-25 17:02:30 +02:00
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height);
|
2019-05-27 17:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2019-07-02 19:36:55 +02:00
|
|
|
perror("v4l2_mmap");
|
2019-05-27 17:11:43 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-14 19:29:11 +02:00
|
|
|
(void)fimg_timer_set(0);
|
2019-07-02 07:07:38 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
#if SAVE_AS_CUMUL
|
2019-09-03 15:37:49 +02:00
|
|
|
if (upscaling) {
|
|
|
|
foo = fimg_create(&cumul,
|
|
|
|
fmt.fmt.pix.width*2, fmt.fmt.pix.height*2,
|
|
|
|
FIMG_TYPE_RGB);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foo = fimg_create(&cumul,
|
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height,
|
|
|
|
FIMG_TYPE_RGB);
|
|
|
|
}
|
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
fimg_clear(&cumul);
|
2019-08-24 13:24:01 +02:00
|
|
|
cumul.fval = 255.0;
|
2019-09-02 11:47:51 +02:00
|
|
|
cumul.count = 0;
|
2019-08-10 21:26:39 +02:00
|
|
|
#endif
|
|
|
|
|
2019-08-12 01:53:17 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
|
|
|
xioctl(fd, VIDIOC_STREAMON, &type);
|
2019-07-02 07:17:11 +02:00
|
|
|
|
2019-07-02 19:36:55 +02:00
|
|
|
if (verbosity) fprintf(stderr,"pid %d grabbing %d picz...\n",
|
|
|
|
getpid(), nbre_capt);
|
2019-07-02 07:17:11 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
for (i = 0; i < nbre_capt; 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;
|
|
|
|
}
|
|
|
|
|
2019-08-14 19:29:11 +02:00
|
|
|
if(verbosity > 1) {
|
2019-09-05 15:50:47 +02:00
|
|
|
printf("%6d / %6d %9.3f\r", i, nbre_capt,
|
2019-08-24 13:24:01 +02:00
|
|
|
fimg_timer_get(0));
|
2019-08-14 19:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
CLEAR(buf);
|
|
|
|
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
|
|
|
buf.memory = V4L2_MEMORY_MMAP;
|
|
|
|
xioctl(fd, VIDIOC_DQBUF, &buf);
|
|
|
|
|
2019-08-10 18:37:52 +02:00
|
|
|
#if SAVE_AS_PNM
|
|
|
|
/* at this time,we'v got a picture in-memory,
|
|
|
|
so we can blast in on storage */
|
2019-05-28 14:55:40 +02:00
|
|
|
sprintf(out_name, "%s/%05d.ppm", dest_dir, i);
|
2019-07-02 07:17:11 +02:00
|
|
|
if (verbosity > 1) fprintf(stderr, "--> %s\n", out_name);
|
2019-05-27 17:11:43 +02:00
|
|
|
fout = fopen(out_name, "w");
|
|
|
|
if (!fout) {
|
|
|
|
perror("Cannot open image");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
fprintf(fout, "P6\n%d %d 255\n",
|
2019-05-25 17:02:30 +02:00
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height);
|
2019-05-27 17:11:43 +02:00
|
|
|
fwrite(buffers[buf.index].start, buf.bytesused, 1, fout);
|
|
|
|
fclose(fout);
|
2019-08-10 21:26:39 +02:00
|
|
|
#endif
|
2019-06-29 19:33:23 +02:00
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
#if SAVE_AS_CUMUL
|
2019-09-03 15:37:49 +02:00
|
|
|
if (upscaling) {
|
|
|
|
x_upscaler_0(buffers[buf.index].start,
|
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height, &cumul);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
x_add_rgb2fimg(buffers[buf.index].start,
|
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height, &cumul);
|
|
|
|
}
|
2019-08-10 18:37:52 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SAVE_AS_FIMG
|
|
|
|
sprintf(out_name, "%s/%05d.fimg", dest_dir, i);
|
|
|
|
if (verbosity > 1) fprintf(stderr, "--> %s\n", out_name);
|
|
|
|
foo = x_rgb2file(buffers[buf.index].start,
|
|
|
|
fmt.fmt.pix.width, fmt.fmt.pix.height,
|
|
|
|
out_name);
|
|
|
|
#endif
|
|
|
|
|
2019-08-14 19:29:11 +02:00
|
|
|
if (nbre_capt > 1 && period > 1.0) {
|
|
|
|
usleep(period);
|
2019-05-27 17:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
xioctl(fd, VIDIOC_QBUF, &buf);
|
2019-09-04 17:41:57 +02:00
|
|
|
}
|
2019-05-25 17:02:30 +02:00
|
|
|
|
2019-09-07 11:16:15 +02:00
|
|
|
puts(""); fflush(stdout);
|
|
|
|
|
2019-05-28 12:10:55 +02:00
|
|
|
t_final = fimg_timer_get(0);
|
2019-09-03 15:37:49 +02:00
|
|
|
fprintf(stderr, "pid %d : elapsed %g s -> %.2f fps\n", getpid(),
|
|
|
|
t_final, (double)nbre_capt / t_final);
|
2019-08-10 21:26:39 +02:00
|
|
|
|
|
|
|
#if SAVE_AS_CUMUL
|
2019-09-02 11:47:51 +02:00
|
|
|
if (to_gray) {
|
|
|
|
if (verbosity) fputs("converting to gray\n", stderr);
|
|
|
|
foo = fimg_to_gray(&cumul);
|
|
|
|
}
|
2019-09-03 15:37:49 +02:00
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
// save cumul to file
|
2019-09-04 17:41:57 +02:00
|
|
|
if (verbosity) fprintf(stderr, "saving to '%s'\n", outfile);
|
2019-09-17 11:21:20 +02:00
|
|
|
foo = fimg_save_as_pnm(&cumul, outfile, 1);
|
2019-09-03 15:37:49 +02:00
|
|
|
|
2019-08-10 21:26:39 +02:00
|
|
|
// free buffers
|
|
|
|
fimg_destroy(&cumul);
|
|
|
|
#endif
|
2019-05-28 12:10:55 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
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);
|
|
|
|
}
|
2019-05-25 17:02:30 +02:00
|
|
|
|
2019-09-03 22:23:06 +02:00
|
|
|
// free(buffers); /* atomic bombing */
|
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
v4l2_close(fd);
|
2019-05-25 17:02:30 +02:00
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|