Qualcomm技术论坛
直播中

windworld

12年用户 1613经验值
擅长:电源/新能源 嵌入式技术 模拟技术 处理器/DSP
私信 关注

【DragonBoard 410c试用体验】之Mjpg-streamer实现局域网内监控【结项】

项目概述:   
    Mjpg-streamer之前大家或许有了解过,它可以从单一组件获取图像并传输到多个输出组件的命令行式的应用程序,将JPEG的文件视频流化并通过互联网将视频流从这里传送到web浏览器上。这将使得在公司或是外地,通过访问家里安装的摄像头查看家里的情况,实现室内监控。这里正是基于此场景借助Dragonboard来实现下局域网内家庭监控。

硬件准备:
  • Dragonboard 410 *1
  • PC机*1
  • 摄像头 *1
====================================================
软件准备:
  • Ubuntu系统镜像
  • Mjpg-streamer
  • gcc工具链

具体模型如下:
框架.png
   这里主要采用服务器来存储dragonboard通过摄像头采集到的数据,然后利用PC终端或是一顿段进行查看,在真正要实现外网访问必须要有公网IP或是采用内网映射的方法,而本人所在的网络为校园网,所以这里采用局域网的形式进行实现。具体实现如下:
1.首先安装libjpeg8-dev libv4l-dev subversion相关包:
  1. apt-get install libjpeg8-dev libv4l-dev subversion
2.2.jpg

2.从linux-sunxi.org中提供的仓库地址获取 mjpg-streamer源码
  1. svn co [url]https://svn.code.sf.net/p/mjpg-streamer/code/mjpg-streamer[/url] mjpg-streamer
4.jpg


3.进入mjpg-streamer并编译
  1. cd mjpg-streamer
  2. make USE_LIBV4L2=true clean all
7.jpg


4.运行start.sh启动脚本
  1. ./start.sh
5.jpg
框图如下:
1111.png
   到此可以基本实现局域网内监控了,不过为了更清楚项目源码实现过程,我们可以简单看下mjpg-streamer.c中部分实现代码:
  1. int main(int argc, char *argv[])
  2. {
  3.     //char *input  = "input_uvc.so --resolution 640x480 --fps 5 --device /dev/video0";
  4.     char *input[MAX_INPUT_PLUGINS];
  5.     char *output[MAX_OUTPUT_PLUGINS];
  6.     int daemon = 0, i;
  7.     size_t tmp = 0;

  8.     output[0] = "output_http.so --port 8080";
  9.     global.outcnt = 0;


  10.     /* parameter parsing */
  11.     while(1) {
  12.         int option_index = 0, c = 0;
  13.         static struct option long_options[] = {
  14.             {"h", no_argument, 0, 0
  15.             },
  16.             {"help", no_argument, 0, 0},
  17.             {"i", required_argument, 0, 0},
  18.             {"input", required_argument, 0, 0},
  19.             {"o", required_argument, 0, 0},
  20.             {"output", required_argument, 0, 0},
  21.             {"v", no_argument, 0, 0},
  22.             {"version", no_argument, 0, 0},
  23.             {"b", no_argument, 0, 0},
  24.             {"background", no_argument, 0, 0},
  25.             {0, 0, 0, 0}
  26.         };

  27.         c = getopt_long_only(argc, argv, "", long_options, &option_index);

  28.         /* no more options to parse */
  29.         if(c == -1) break;

  30.         /* unrecognized option */
  31.         if(c == '?') {
  32.             help(argv[0]);
  33.             return 0;
  34.         }

  35.         switch(option_index) {
  36.             /* h, help */
  37.         case 0:
  38.         case 1:
  39.             help(argv[0]);
  40.             return 0;
  41.             break;

  42.             /* i, input */
  43.         case 2:
  44.         case 3:
  45.             input[global.incnt++] = strdup(optarg);
  46.             break;

  47.             /* o, output */
  48.         case 4:
  49.         case 5:
  50.             output[global.outcnt++] = strdup(optarg);
  51.             break;

  52.             /* v, version */
  53.         case 6:
  54.         case 7:
  55.             printf("MJPG Streamer Version: %sn"
  56.             "Compilation Date.....: %sn"
  57.             "Compilation Time.....: %sn",
  58.           }
  59.          
  60.            for(i = 0; i < global.outcnt; i++) {
  61.         tmp = (size_t)(strchr(output[i], ' ') - output[i]);
  62.         global.out[i].plugin = (tmp > 0) ? strndup(output[i], tmp) : strdup(output[i]);
  63.         global.out[i].handle = dlopen(global.out[i].plugin, RTLD_LAZY);
  64.         if(!global.out[i].handle) {
  65.             LOG("ERROR: could not find output plugin %sn", global.out[i].plugin);
  66.             LOG("       Perhaps you want to adjust the search path with:n");
  67.             LOG("       # export LD_LIBRARY_PATH=/path/to/plugin/foldern");
  68.             LOG("       dlopen: %sn", dlerror());
  69.             closelog();
  70.             exit(EXIT_FAILURE);
  71.         }
  72.         global.out[i].init = dlsym(global.out[i].handle, "output_init");
  73.         if(global.out[i].init == NULL) {
  74.             LOG("%sn", dlerror());
  75.             exit(EXIT_FAILURE);
  76.         }
  77.         global.out[i].stop = dlsym(global.out[i].handle, "output_stop");
  78.         if(global.out[i].stop == NULL) {
  79.             LOG("%sn", dlerror());
  80.             exit(EXIT_FAILURE);
  81.         }
  82.         global.out[i].run = dlsym(global.out[i].handle, "output_run");
  83.         if(global.out[i].run == NULL) {
  84.             LOG("%sn", dlerror());
  85.             exit(EXIT_FAILURE);
  86.         }

  87.         /* try to find optional command */
  88.         global.out[i].cmd = dlsym(global.out[i].handle, "output_cmd");

  89.         global.out[i].param.parameters = strchr(output[i], ' ');
  90.         split_parameters(global.out[i].param.parameters, &global.out[i].param.argc, global.out[i].param.argv);

  91.         global.out[i].param.global = &global;
  92.         global.out[i].param.id = i;
  93.         if(global.out[i].init(&global.out[i].param, i)) {
  94.             LOG("output_init() return value signals to exitn");
  95.             closelog();
  96.             exit(0);
  97.         }
  98.     }

  99.     /* start to read the input, push pictures into global buffer */
  100.     DBG("starting %d input pluginn", global.incnt);
  101.     for(i = 0; i < global.incnt; i++) {
  102.         syslog(LOG_INFO, "starting input plugin %s", global.in[i].plugin);
  103.         if(global.in[i].run(i)) {
  104.             LOG("can not run input plugin %d: %sn", i, global.in[i].plugin);
  105.             closelog();
  106.             return 1;
  107.         }
  108.     }

  109.     DBG("starting %d output plugin(s)n", global.outcnt);
  110.     for(i = 0; i < global.outcnt; i++) {
  111.         syslog(LOG_INFO, "starting output plugin: %s (ID: %02d)", global.out[i].plugin, global.out[i].param.id);
  112.         global.out[i].run(global.out[i].param.id);
  113.     }

  114.     /* wait for signals */
  115.     pause();

  116.     return 0;
  117. }
上面是整个项目的部分源码,整个程序的大体框图如下:
结构图.jpg
   源码中getopt_long_only()函数主要是用来将*input中的-h -i -o -v -b的参数解析出来;而option_index是保存long_options中的坐标值,通过strdup(optarg)获取相应的标记后的参数;dlopen()函数负责打开*.so插件,dlsym()负责调用插件中的相关函数。具体还有相关的一些调用函数,感兴趣的话可以继续研究研究。
  整个过程中涉及到v4l2接口、socket编程以及多线程编程。通过USB摄像头实现数据的采集(主要用到了Input_uvc.so模块),并将采集到的图像进行压缩处理,最红形成jpg格式图片上次到web上,客户端可以通过HTTP进行访问,具体效果如下图所示:
55.jpg

小结:
   MJPG-streamer是用于从USB摄像头采集图像,把他们以流的形式通过基于ip的网络传输到浏览器从而降低服务器CPU的开销。因此对于嵌入式设备非常合适,同时由于无需为视频帧压缩,而大大提高CPU效率,这里只是做的简单研究和实现,上面情况是采用局域网来实现监控,如果要实现远程外网则需要一个公网IP,或者是利用花生壳做映射。后面附上MJPG-streamer源码。

  关于基本环境搭建部分,和dragonboard底层驱动可以参考前面LED点灯实验,可以参考下面帖子。通过这些实验可以了解这个硬件GPIO的控制和使用,对dragonboard有个整体的把握和入门学习。
2、【DragonBoard 410c试用体验】烧写Debian镜像到EMMC(8.27)
https://bbs.elecfans.com/jishu_932909_1_1.html
3、【DragonBoard 410c试用体验】之系统初体验&启动root用户(8.27)
https://bbs.elecfans.com/jishu_932915_1_1.html
4、【DragonBoard 410c试用体验】之VNC远程桌面问题(8.27)
https://bbs.elecfans.com/jishu_932921_1_1.html
5、【DragonBoard 410c试用体验】DragonBoard 410c官方全套文档(8.27)
https://bbs.elecfans.com/jishu_932924_1_1.html
6、【DragonBoard 410c试用体验】之编译测试和LED点灯实验(8.27)
https://bbs.elecfans.com/jishu_932932_1_1.html
7、【DragonBoard 410c试用体验】之运行x11vnc -ncache 10解决远程桌面问题(9.2)
https://bbs.elecfans.com/jishu_935604_1_1.html
  另外关于前面openCV主要实现了图像的特征检测和轮廓提取,在图像处理中主要设计有滤波和增强以及检测,具体可以参考下面帖子帖子。暂时分享到这里,后面有其他项目会继续和大家分享,谢谢!
8、【DragonBoard 410c试用体验】之搭建OpenCV开发环境并Demo测试(9.2)
https://bbs.elecfans.com/jishu_935623_1_1.html
9、【DragonBoard 410c试用体验】之添加simpleCV库和Python IDLE(9.7)
https://bbs.elecfans.com/jishu_937169_1_1.html
10、【DragonBoard 410c试用体验】之OpenCV加载图片实验(9.10)
https://bbs.elecfans.com/jishu_937913_1_1.html
11、【DragonBoard 410c试用体验】之OpenCV均值滤波介绍(9.11)
https://bbs.elecfans.com/jishu_938046_1_1.html
12、【DragonBoard 410c试用体验】之OpenCV中canny算子边缘检测(9.11)
https://bbs.elecfans.com/jishu_938083_1_1.html
13、【DragonBoard 410c试用体验】 之OpenCV中之图像角点检测实现(9.13)
https://bbs.elecfans.com/jishu_938483_1_1.html
14、【DragonBoard 410c试用体验】cvThreshold阈值操作实现二值图像(10.7)
https://bbs.elecfans.com/jishu_943277_1_1.html
附件:
mjpg-streamer源码.tar.gz (2.75 MB)
(下载次数: 6, 2016-10-13 11:51 上传)






回帖(1)

robin_chen559

2016-10-27 16:28:55
好牛掰的样子 虽然看不懂~~~~
举报

更多回帖

发帖
×
20
完善资料,
赚取积分