Skip to content

Object detection/tracking add-on for Motion cctv software

License

Notifications You must be signed in to change notification settings

xj25vm/MotionSpot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MotionSpot

Object detection and tracking add-on for the Motion cctv software

A basic Python script for Motion (https://motion-project.github.io/) to add object detection and tracking capabilities using the Ultralytics Yolo model (https://docs.ultralytics.com/)

Dependencies

  1. Python3
  2. A number of Python modules, which might already be present on your system: numpy, signal, pathlib, psutil, smtplib, requests, email, PIL, io
  3. Ultralytics Python module from Ultralytics (www.ultralytics.com)
  4. One of the Yolo pre-trained models - the current code has been tested with yolov8n and yolov8s

Installation instructions

  1. copy motionspot.py and motionspotcfg.py to /etc/motion (or /etc/motioneye, if using MotionEye)
  2. Download one of the Yolo models to /etc/motion (or /etc/motioneye) from here (lower down the page under Performance section): (https://docs.ultralytics.com/models/yolov8/ ) The current code has been tested with Yolov8 nano and small (yolov8n.pt and yolov8s.pt).
  3. Install Python modules (instructions will vary based on your distribution):
    a. pip install ultalytics
    b. pip install numpy
  4. Change settings in motionspotcfg.py as needed - there are explanatory descriptions for each setting.
  5. In Motion camera configs, for each camera you want object detection, set the following settings as per below:
    a. for on_event_start, add the followint to existing code:
    /usr/bin/python3 /etc/motion/motionspot.py
    b. for on_movie_end, add the following to existing code:
    /usr/bin/python3 /etc/motion/motionspot.py file_save %$ %v %f
    c. set picture_output on
    d. set picture_filename to: images/%v.[camera_name].%H-%M-%S.%q - replace [camera_name] with actual camera name. It is important not to use full stop (.) in the camera name - as it is used for delimiting fields in the name of saved snapshots
    e. (optional) - configure images to mount off tmpfs in ram - to avoid excessive writes to permanent storage, and possibly speed processing up f. (optional) configure Telegram bot to send alerts over Telegram, or email/smtp settings for email alerts

Functional overview

  1. MotionSpot is designed to be started by the Motion process. On every event_start, Motion will attempt to start MotionSpot. MotionSpot itself will check if there is another instance running, and quit if it finds one
  2. MotionSpot will keep looping over the images saved by Motion, and when it finds the requested object class or classes, it will rename the snapthot from snapshot.jpg to snapthos.jpg.detection
  3. On movie_save, Motion will invoke MotionSpot again, with the name of the filename of the saved movie as one of the parameters. MotionSpot will check if there are any .detection files corresponding to the event of the saved movie file. If it finds any, it will leave the move file in place. If it doesn't, it deletes it
  4. If configured to do so, MotionSpot will send alerts when detecting objects presence or movement. It will send alerts for 1st, 2nd and 4th frames with detections for each event (which equates to each movie saved by Motion). Currently Telegram and email/smtp alerts are supported
  5. Also, if configured, MotionSpot can turn on the led spotlight on the corresponding camera on detection of one of the requested object classes. This has been tested with HikVision DS-2CD2347G2 cameras - the code would need adapting for other camera models.

Hardware requirements

  1. As a very general reference point, I've tested MotionSpot with an Intel Core i3-2120 processor which just about managed to keep up with one camera at 1280x720 resolution and 5fps.
  2. MotionSpot is also currently in use with an AMD Ryzen AMD Ryzen 5 PRO 5675U with 10 cameras at 1280x720 at 5fps and it copes reasonably well with almost realtime alerts. It occasionally starts to fall behind by 1-2 minutes if there is movement detected on too many cameras at the same time.

About

Object detection/tracking add-on for Motion cctv software

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages