Qualcomm 无线远程
一.背景
上一篇《基于DragonBoard 410c的远程家居监控平台二之远程图像传输(上)》,博主给大家演示了如何利用motion在DragonBoard 410c实现无线远程实时监控功能,本文在此基础上再详细地 motion的细节功能。
二.motion配置
首先我们看下拷贝到/home/linaro/motion/motion.conf文件,这是motion启动时的配置文件,所有详细的功能都能在这里找到设置结点,关键的设置如下:
daemon on #后台运行
videodevice /dev/video0 #摄像头的设备字符文件,一般不需要修改
target_dir /tmp/motion #输出的图片和视频存放的位置
width 1024
height 768
webcam_quality 100 #画面质量
webcam_localhost off #允许远程访问
三.移动侦测:
motion有个特殊的功能,就是还提供移动物体侦测以及画面捕捉,录像,具体配置如下:
daemon on #后台运行
videodevice /dev/video0 #摄像头的设备字符文件,一般不需要修改
target_dir /tmp/motion #输出的图片和视频存放的位置
locate on #如果画面中有运动的话就框起来
width 1024
height 768
webcam_quality 100 #画面质量
webcam_motion on #只有在画面变化的情况下才拍照
webcam_localhost off #允许远程访问
ffmpeg-cap_new on #画面有运动的话就用视频录下来
ffmpeg_video_codec msmpeg4 #视频的编码
############################################################
# Motion Detection Settings:
############################################################
# Threshold for number of changed pixels in an image that
# triggers motion detection (default: 1500)
threshold 3000 #3000是指像素灵敏度,像素点越低,灵敏度越高
图1 侦测移动手掌
更多回帖