zoukankan      html  css  js  c++  java
  • Raspberry Pi + 3个USB摄像头 + Motion(简易监控设备配置记录1——介绍以及安装) 分类: Raspberry Pi 服务器搭建 2015-04-12 19:21 226人阅读 评论(0) 收藏

    参考:
    Debian官网链接
    Motion官网链接

    首先,参见Debian官网链接对Motion的介绍,网页中包含了所有相关依赖包,请首先确保这些依赖包的安装。


    Motion介绍

    摘出对Motion的介绍部分。如下:
    Package: motion (3.2.12-3.4)

    V4L capture program supporting motion detection

    Motion is a program that monitors the video signal from one or more cameras and is able to detect if a significant part of the picture has changed. Or in other words, it can detect motion.

    Motion is a command line based tool. It has no graphical user interface. Everything is setup either via the command line or via configuration files.

    The output from motion can be:

    • jpg files
    • ppm format files
    • mpeg video sequences
      Also, motion has its own minimalistic web server. Thus, you can access the webcam output from motion via a browser.

    简单来说,Motion就是一款可以同时开启多个摄像头进行视频监控并同时实现运动捕捉的程序,该程序基于命令行界面,其输出支持jpg图片输出,ppm format视频输出,以及mpeg视频序列输出。同时,Motion还可以实现网页端的实时视频监控。


    安装介绍如下(摘自Motion官网链接):
    PS:如果你想选择编译源码安装,参见上面的链接,有详细的说明。

    Installation on Ubuntu

    Motion is part of the Ubuntu repository. You can click either click here to install it via the Ubuntu Software-Center.
    Or open up a terminal window and type:

    sudo apt-get install motion

    Before we start configuring Motion, we need to copy the config file to our Home folder so that the master copy won’t be affected. Open a terminal and copy the configuration file to your Home folder with following commands:

    mkdir .motion

    (Note: This will create a hidden folder “.motion” in your Home directory.)

    sudo cp /etc/motion/motion.conf ~/.motion/motion.conf

    (Note: This command will copy the original motion configuration file to its location.)
    Now can open the configuration file for editing:

    sudo nano ~/.motion/motion.conf

    After you you have done so, start motion in the terminal simply by typing:

    sudo motion

    安装好Motion之后,
    输入命令:

    man motion

    你会发现这是一款无比强大的应用。其可配置性强大的令人发指。
    附上其官网连接供参考。
    和其他Linux下的强大程序相同,这款程序同样是开源的。他的发布遵守GPL。
    无需注册,无需任何人许可,你可以免费的安装,使用它。

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    Microsoft .NET Framework 以及 CLR 的版本
    如何:备份 Team Foundation Server
    通过VS2008SP1 访问TFS2010
    Project 2007 Understanding Project's Percent Complete vs. Percent Work Complete
    TFS:从单服务器部署移到双服务器部署
    C#网络编程(基本概念和操作) Part.1
    图解Windows server 2012故障转移群集的安装、建立
    产品经理经验总结
    TCP同步与异步及阻塞模式,多线程+阻塞模式,非阻塞模式简单介绍
    Windows Phone开发概论
  • 原文地址:https://www.cnblogs.com/paulweihan/p/4660101.html
Copyright © 2011-2022 走看看