This is a movement detector build from scratch using python3. It can be used in Security Cams.
This project requires Python (version 3 or later) and PIP. Python and PIP are really easy to install. To make sure you have them available on your machine, try running the following command.
$ python -V && pip -V
Python 3.8.5
pip 20.3.3Start with cloning this repo on your local machine:
$ git clone https://github.com/dubeyji0110/movementDetector.git
$ cd movementDetectorTo try this project you need to install some modules in the given sequence
- pip install opencv-pythonYou can add your new features and pull a request, I will sure look into that.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Add your changes:
git add . - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request 😎
- Devansh Dubey - Initial work - dubeyji0110