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
| #include<stdio.h> #include<stdlib.h> #include<string.h> #include<fcntl.h> #include<unistd.h> #include<errno.h> #include<sys/ioctl.h> #include<sys/types.h> #include<sys/mman.h> #include<libv4l1.h> #include<libv4l2.h> #include<linux/videodev2.h>
#include<opencv2/highgui/highgui.hpp> #include<opencv2/imgproc/imgproc.hpp> #include<opencv2/core/core.hpp> using namespace cv;
char videodevice[] = "/dev/video9"; int imageWidth = 320; int imageHeight = 240;
#define CLEAR(x) memset(&(x), 0, sizeof(x))
struct buffer { void *start; size_t length; };
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)); exit(EXIT_FAILURE); } }
int main() { int fd = -1; fd = open (videodevice, O_RDWR, 0); if(fd < 0){ printf("failed to open\n"); exit(EXIT_FAILURE); } printf("打开摄像头设备成功,%s\n", videodevice);
printf("------------\n"); struct v4l2_capability cap; xioctl (fd, VIDIOC_QUERYCAP, &cap); printf("Driver Name:%s\nCard Name:%s\nBus info:%s\nDriver Version:%u.%u.%u\n\n",cap.driver,cap.card,cap.bus_info,(cap.version>>16)&0XFF, (cap.version>>8)&0XFF,cap.version&0XFF);
printf("------------\n"); struct v4l2_fmtdesc fmtdesc; fmtdesc.index=0; fmtdesc.type=V4L2_BUF_TYPE_VIDEO_CAPTURE; printf("Supportformat:\n"); while(ioctl(fd,VIDIOC_ENUM_FMT,&fmtdesc)!=-1) { printf("\t%d.%c%c%c%c\t%s\n",fmtdesc.index+1,fmtdesc.pixelformat & 0xFF, (fmtdesc.pixelformat >> 8) & 0xFF,(fmtdesc.pixelformat >> 16) & 0xFF, (fmtdesc.pixelformat >> 24) & 0xFF,fmtdesc.description); fmtdesc.index++; }
struct v4l2_format fmt; struct v4l2_buffer buf; struct v4l2_requestbuffers req;
CLEAR(fmt); CLEAR(buf); CLEAR(req);
printf("------------\n"); printf("设置摄像头视频数据格式\n"); fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; fmt.fmt.pix.width = imageWidth; fmt.fmt.pix.height = imageHeight; fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_MJPEG; fmt.fmt.pix.field = V4L2_FIELD_INTERLACED; xioctl(fd, VIDIOC_S_FMT, &fmt);
if ((fmt.fmt.pix.width != imageWidth) || (fmt.fmt.pix.height != imageHeight)) printf("Warning: driver is sending image at %dx%d\n", fmt.fmt.pix.width, fmt.fmt.pix.height); else { printf("fmt.type is %d\n",fmt.type); printf("Width = %d\n",fmt.fmt.pix.width); printf("Height= %d\n",fmt.fmt.pix.height); printf("Sizeimage = %d\n",fmt.fmt.pix.sizeimage); }
printf("------------\n"); printf("请求分配视频缓冲区\n"); req.count = 4; req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; req.memory = V4L2_MEMORY_MMAP; xioctl(fd, VIDIOC_REQBUFS, &req);
printf("------------\n"); printf("查询缓冲信息,将内核空间映射到用户空间\n"); struct buffer *buffers; unsigned int i, n_buffers;
buffers = (struct buffer*)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); } }
printf("------------\n"); printf("投放一个空的视频缓冲区到视频缓冲区输入队列中\n"); 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); }
printf("------------\n"); printf("启动视频采集\n"); enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE; xioctl(fd, VIDIOC_STREAMON, &type);
fd_set fds; int r; struct timeval tv;
do { FD_ZERO(&fds); FD_SET(fd, &fds);
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; } Mat frame; while(1) { CLEAR(buf); buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; buf.memory = V4L2_MEMORY_MMAP; xioctl(fd, VIDIOC_DQBUF, &buf); char * p = (char *)(buffers[buf.index].start); printf("------------\n"); printf("取得一帧,%fkb\n", buf.bytesused/1024.0);
vector<char> data(p, p + buf.bytesused); frame = imdecode(Mat(data), CV_LOAD_IMAGE_ANYDEPTH | CV_LOAD_IMAGE_COLOR); imshow("test", frame); int c = waitKey(10)&0xFF; if(c == 27){ break; }
xioctl(fd, VIDIOC_QBUF, &buf); }
printf("------------\n"); printf("停止视频采集\n"); 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); exit (EXIT_SUCCESS); }
|