uvc
flfihpv259
这个作者很懒,什么都没留下…
展开
-
记录USB摄像头的几个问题
usb 1-1.2: device not accepting address 44, error -62 hub 1-1:1.0: unable to enumerate USB device on port 21.1 使用同一个usb摄像头,在电脑端可以输出: description:YUYV 4:2:2 pixelformat:YUYV discrete-framesiz原创 2016-09-13 11:28:46 · 3022 阅读 · 0 评论 -
Linux UVC driver 独立交叉编译记录
官网介绍如下: Typical usage is:git clone git://linuxtv.org/media_build.gitcd media_build./buildmake install 这个是针对你当前运行的linux环境的编译。下面介绍下如何针对指定的内核版本进行交叉编译。1 下载项目源码:git clone git://linuxtv.org/media_b原创 2016-09-06 10:38:59 · 3920 阅读 · 0 评论 -
linux 下USB 摄像头的使用说明
查询摄像头是否是UVC设备参见官网UVC驱动代码详解明明是UVC摄像头但不是不支持怎么办心得此处我只说用uvc通用驱动查询摄像头是否是UVC设备,参见官网1 找到CAMERA ID2 lsusb -d VID:PID -v | grep “14 Video” 如果输出有下面信息说明支持 bFunctionClass 14 Video bInterfaceCl原创 2016-09-02 17:22:54 · 9645 阅读 · 0 评论 -
v4l2 camera测试程序 保存成图片
使用的usb camera 是 0ac8:3420,使用网上找到的代码改保存在图片,/* * main.c * * Created on: Apr 25, 2016 * Author: anzyelay */#include #include #include #include #include #include #include #include原创 2016-04-27 17:09:37 · 2355 阅读 · 0 评论 -
RGB565,RGB24,YUV
RGB888转RGB56524ibt RGB888: 第4字节 第3字节 第2字节 第1字节 空 R7 R6 R5 R4 R3 R2 R1 R0 G7 G6 G5 G4 G3 G2 G1 G0 B7 B6 B5 B4 B3 B2 B1 B0要转化成565的格式,那数据如下:16bit RGB565: 高字节 低字节 前4位 后4位 前8位 后原创 2016-09-22 17:23:45 · 1875 阅读 · 0 评论