Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhathiya29/image-motion-detection-security-application-
This is a Python Application where it will detect moving objects and will alert the relevant person via email with a photo of the detected object. The algorithm here is we compare the very first frame with the frames after that (matrix comparison). If any difference is detected we will use an algorithm to smooth that area, and send an email
https://github.com/bhathiya29/image-motion-detection-security-application-
algorithm machine-learning motion-detection python
Last synced: 15 days ago
JSON representation
This is a Python Application where it will detect moving objects and will alert the relevant person via email with a photo of the detected object. The algorithm here is we compare the very first frame with the frames after that (matrix comparison). If any difference is detected we will use an algorithm to smooth that area, and send an email
- Host: GitHub
- URL: https://github.com/bhathiya29/image-motion-detection-security-application-
- Owner: Bhathiya29
- Created: 2023-07-03T09:31:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-03T09:34:07.000Z (over 1 year ago)
- Last Synced: 2024-11-05T11:14:09.472Z (2 months ago)
- Topics: algorithm, machine-learning, motion-detection, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
##SECURITY ALERT APPLICATION
This is a Python Application where it will detect moving objects
and will alert the relevant person via email with a photo of the detected
object.The algorithm here is we compare the very first frame with the frames after that (matrix comparison).
If any difference is detected we will use an algorithm to smooth that area, and we will draw some rectangles
and will find the rectangle around that object and will draw the rectangle on the current frame with the rectangle inside.The algorithm is basically like classifying pixels based on a certain threshold
The moment the algorithm detects an object, an email will be sent with the captured image
There will be multiple images captured, and the best one will be emailed
This application also uses Threading.