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/)
- Python3
- A number of Python modules, which might already be present on your system: numpy, signal, pathlib, psutil, smtplib, requests, email, PIL, io
- Ultralytics Python module from Ultralytics (www.ultralytics.com)
- One of the Yolo pre-trained models - the current code has been tested with yolov8n and yolov8s
- copy motionspot.py and motionspotcfg.py to /etc/motion (or /etc/motioneye, if using MotionEye)
- 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).
- Install Python modules (instructions will vary based on your distribution):
a.pip install ultalytics
b.pip install numpy
- Change settings in motionspotcfg.py as needed - there are explanatory descriptions for each setting.
- In Motion camera configs, for each camera you want object detection, set the following settings as per below:
a. foron_event_start
, add the followint to existing code:
/usr/bin/python3 /etc/motion/motionspot.py
b. foron_movie_end
, add the following to existing code:
/usr/bin/python3 /etc/motion/motionspot.py file_save %$ %v %f
c. setpicture_output on
d. setpicture_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) - configureimages
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
- 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
- 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
tosnapthos.jpg.detection
- 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 - 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
- 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.
- 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.
- 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.