Motion Detector
Project description
Motion Detector
Python module for comparing two frames from a video for motion.
Installation
Package Installation from PyPi
$ pip install motion-detector-g4
Package Installation from Source Code
The source code is available on GitHub.
Download and install the package:
$ git clone https://github.com/Genzo4/motion_detector
$ cd motion_detector
$ pip install -r requirements.txt
$ pip install .
Basic usage
Import:
from motion_detector_g4 import MotionDetector
Create an instance of the motion detector. You can specify additional options:
- min_area - minimum tracked change size (blob size). Default value: 4000.
- max_area - maximum tracked change size (blob size). Default value: 150000.
- noise_size - the maximum size of the removed noise. Default value: 10.
- debug - debug mode. If it is enabled, intermediate frames are created, showing the process of processing. Default value: False.
md = MotionDetector(min_area=4000, max_area=150000, noise_size=10, debug=False)
The module uses the following algorithm:
- The first frame is being processed (method apply_first_frame).
- The next frame is being processed (method check_motion):
- the first frame is subtracted from this frame using the module BackgroundSubtractorMOG2
from the library OpenCV. If debug mode is enabled, then a file is created with an additional
extension "mask" with the result of the module.
- remove noise using the morphologyEx module from the OpenCV library. This process configured using the noise_size parameter. If debug mode is enabled, then a file is created with the additional extension "clear" with the result of the module's operation.
- looking for areas of motion (blobs) larger than min_area but smaller than max_area. If debug mode is enabled, then files are created with the extension "blobs" and "blobs2" with the result of the module's operation (found areas are circled in red).
- the first frame is subtracted from this frame using the module BackgroundSubtractorMOG2
from the library OpenCV. If debug mode is enabled, then a file is created with an additional
extension "mask" with the result of the module.
See the example.py file for an example of usage.
Motion Detector
Python модуль для сравнения двух кадров из видеозаписи на предмет наличия движения в них.
Установка
Установка пакета с PyPi
$ pip install motion-detector-g4
Установка пакета из исходного кода
Исходный код размещается на GitHub.
Скачайте его и установите пакет:
$ git clone https://github.com/Genzo4/motion_detector
$ cd motion_detector
$ pip install -r requirements.txt
$ pip install .
Использование
Подключаем:
from motion_detector_g4 import MotionDetector
Создаём экземпляр детектора движения. Можно указать дополнительные параметры:
- min_area - минимальный размер отслеживаемого изменения (размера blob'а). Значение по умолчанию: 4000.
- max_area - максимальный размер отслеживаемого изменения (размера blob'а). Значение по умолчанию: 150000.
- noise_size - максимальный размер удаляемого "шума". Значение по умолчанию: 10.
- debug - режим отладки. Если его включить, то создаются промежуточные кадры, показывающие процесс обработки. Значение по умолчанию: False.
md = MotionDetector(min_area=4000, max_area=150000, noise_size=10, debug=False)
В модуле используется следующий алгоритм:
- Подаётся на обработку первый кадр (метод apply_first_frame).
- Подаётся на обработку следующий кадр (метод check_motion):
- из этого кадра "вычитается" первый кадр с помощью модуля BackgroundSubtractorMOG2
из библиотеки OpenCV. Если включён режим отладки, то создаётся файл с добавочным
расширением "mask" с результатом работы модуля.
- удаляем "шум" с помощью модуля morphologyEx из библиотеки OpenCV. Данный процесс настраивается с помощью параметра noise_size. Если включён режим отладки, то создаётся файл с добавочным расширением "clear" с результатом работы модуля.
- ищем области движения (blob'ы) размером больше min_area, но меньше max_area. Если включён режим отладки, то создаются файлы с добавочным расширением "blobs" и "blobs2" с результатом работы модуля (найденные области обводятся красными кругами).
- из этого кадра "вычитается" первый кадр с помощью модуля BackgroundSubtractorMOG2
из библиотеки OpenCV. Если включён режим отладки, то создаётся файл с добавочным
расширением "mask" с результатом работы модуля.
Пример использования см. в файле example.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file motion_detector_g4-1.2.0.tar.gz
.
File metadata
- Download URL: motion_detector_g4-1.2.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4f77acfe11fbfbda733bc60494daeb72837926e25a201047e5f4f27b5aa55c5 |
|
MD5 | 2f48c3aa9e3958b58e56ebc70e5e1d8b |
|
BLAKE2b-256 | 5d5ed917f755401aa561fab851a63066eade85b5f245a082eab8120605982377 |
File details
Details for the file motion_detector_g4-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: motion_detector_g4-1.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15a5174ea137cf3c158c6981cf185f0f9b028186ec7e48a1ca1e7c1f3f43d444 |
|
MD5 | 38b2f39ea18d4b7aae33c5b574badeb2 |
|
BLAKE2b-256 | 313ebd1af5b69f2ef23fb632138b9aa694adf013dec4c1ec927b23e6ad912517 |