2024年11月24日星期日 上午6:28:00

use motioneye to detect objects in camera images locally on Home Assistant

2 年 前
#2337 引用
树莓派安装motion和motioneye

use Home Assistant and motioneye to detect objects in camera images locally.

https://bbs.hassbian.com/thread-10392-1-1.html

一个淘宝14块钱的号称官方的摄像头,也可以是一个普通的usb摄像头,我只测了14排线的摄像头
一个树莓派


一个淘宝14块钱的号称官方的摄像头,也可以是一个普通的usb摄像头,
0
10 个月 前
#25288 引用
motionEye
OpenCV 进行物体检测
Tensorflow 进行物体检测
0
10 个月 前
#25293 引用
generic
0
10 个月 前
#25294 引用
对接homeassistant
在configuation.yaml里面添加:



# 还没有测试
camera:
  - platform: generic
    name: 摄像头  
    still_image_url: http://127.0.0.1:8765/picture/1/current/
    stream_source: http://127.0.0.1:8081

binary_sensor:
  - platform: ffmpeg_motion
    input: http://127.0.0.1:8081
    #changes: 3 //这个参数调整移动侦测灵敏度,值越小越灵敏。
    name: 移动侦测

0