十、V4L2攝像頭獲取單幅圖片測試程序(MMAP模式)

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>linux

#include <getopt.h>           異步

#include <fcntl.h>             
#include <unistd.h>
#include <errno.h>
#include <malloc.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/mman.h>
#include <sys/ioctl.h>ide

#include <asm/types.h>         
#include <linux/videodev2.h>函數

#define CLEAR(x) memset (&(x), 0, sizeof (x))ui

struct buffer {
        void *                  start;
        size_t                  length;
};orm

static char *           dev_name        = "/dev/video0";//攝像頭設備名
static int              fd              = -1;
struct buffer *         buffers         = NULL;
static unsigned int     n_buffers       = 0;圖片

FILE *file_fd;
static unsigned long file_length;
static unsigned char *file_name;
//////////////////////////////////////////////////////
//獲取一幀數據
//////////////////////////////////////////////////////
static int read_frame (void)
{
struct v4l2_buffer buf;
unsigned int i;內存

CLEAR (buf);
buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
buf.memory = V4L2_MEMORY_MMAP;ci

ioctl (fd, VIDIOC_DQBUF, &buf); //出列採集的幀緩衝get

assert (buf.index < n_buffers);
   printf ("buf.index dq is %d,\n",buf.index);

fwrite(buffers[buf.index].start, buffers[buf.index].length, 1, file_fd); //將其寫入文件中
  
ioctl (fd, VIDIOC_QBUF, &buf); //再將其入列

return 1;
}

int main (int argc,char ** argv)
{
struct v4l2_capability cap; 
struct v4l2_format fmt;
unsigned int i;
enum v4l2_buf_type type;

file_fd = fopen("test-mmap.jpg", "w");//圖片文件名

fd = open (dev_name, O_RDWR /* required */ | O_NONBLOCK, 0);//打開設備

ioctl (fd, VIDIOC_QUERYCAP, &cap);//獲取攝像頭參數

CLEAR (fmt);
fmt.type                = V4L2_BUF_TYPE_VIDEO_CAPTURE;
fmt.fmt.pix.width       = 640; 
fmt.fmt.pix.height      = 480;
fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
fmt.fmt.pix.field       = V4L2_FIELD_INTERLACED;
ioctl (fd, VIDIOC_S_FMT, &fmt); //設置圖像格式

file_length = fmt.fmt.pix.bytesperline * fmt.fmt.pix.height; //計算圖片大小

struct v4l2_requestbuffers req;
CLEAR (req);
req.count               = 4;
req.type                = V4L2_BUF_TYPE_VIDEO_CAPTURE;
req.memory              = V4L2_MEMORY_MMAP;

ioctl (fd, VIDIOC_REQBUFS, &req); //申請緩衝,count是申請的數量

if (req.count < 2)
   printf("Insufficient buffer memory\n");

buffers = calloc (req.count, sizeof (*buffers));//內存中創建對應空間

for (n_buffers = 0; n_buffers < req.count; ++n_buffers) 
{
   struct v4l2_buffer buf;   //驅動中的一幀
   CLEAR (buf);
   buf.type        = V4L2_BUF_TYPE_VIDEO_CAPTURE;
   buf.memory      = V4L2_MEMORY_MMAP;
   buf.index       = n_buffers;

   if (-1 == ioctl (fd, VIDIOC_QUERYBUF, &buf)) //映射用戶空間
    printf ("VIDIOC_QUERYBUF error\n");

   buffers[n_buffers].length = buf.length;
   buffers[n_buffers].start =
   mmap (NULL /* start anywhere */,    //經過mmap創建映射關係
    buf.length,
    PROT_READ | PROT_WRITE /* required */,
    MAP_SHARED /* recommended */,
    fd, buf.m.offset);

   if (MAP_FAILED == buffers[n_buffers].start)
    printf ("mmap failed\n");
        }

for (i = 0; i < n_buffers; ++i) 
{
   struct v4l2_buffer buf;
   CLEAR (buf);

   buf.type        = V4L2_BUF_TYPE_VIDEO_CAPTURE;
   buf.memory      = V4L2_MEMORY_MMAP;
   buf.index       = i;

   if (-1 == ioctl (fd, VIDIOC_QBUF, &buf))//申請到的緩衝進入列隊
    printf ("VIDIOC_QBUF failed\n");
}
                
type = V4L2_BUF_TYPE_VIDEO_CAPTURE;

if (-1 == ioctl (fd, VIDIOC_STREAMON, &type)) //開始捕捉圖像數據
   printf ("VIDIOC_STREAMON failed\n");

for (;;) //這一段涉及到異步IO
{
   fd_set fds;
   struct timeval tv;
   int r;

   FD_ZERO (&fds);//將指定的文件描述符集清空
   FD_SET (fd, &fds);//在文件描述符集合中增長一個新的文件描述符

   /* Timeout. */
   tv.tv_sec = 2;
   tv.tv_usec = 0;

   r = select (fd + 1, &fds, NULL, NULL, &tv);//判斷是否可讀(即攝像頭是否準備好),tv是定時

   if (-1 == r) {
    if (EINTR == errno)
     continue;
    printf ("select err\n");
                        }
   if (0 == r) {
    fprintf (stderr, "select timeout\n");
    exit (EXIT_FAILURE);
                        }

   if (read_frame ())//若是可讀,執行read_frame ()函數,並跳出循環
   break;
}

unmap:for (i = 0; i < n_buffers; ++i)   if (-1 == munmap (buffers[i].start, buffers[i].length))    printf ("munmap error");close (fd);fclose (file_fd);exit (EXIT_SUCCESS);return 0;}

相關文章
相關標籤/搜索