Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 967 Bytes

README.md

File metadata and controls

31 lines (16 loc) · 967 Bytes

Object Detection using Haar Cascade Classifier method

Running code

To run this project you only need to create a virtualenv and activate it using following commands:

Windows:

.\venv\Scripts\activate

Linux, Mac

sourve venv/bin/activate

Then you should install required packages into your virtualenv using the following command

pip install -r requirements.txt

Now you have everything ready to run the code.

detect_webcam.py: This code opens your webcam and starts detecting every ducks that appears into your frams

python3 detect_webcam.py

detect_image.py: This code reads an image and tries to detect all ducks inside the image.

python3 detect_image.py

The process of training Haar cascade classifier algorithm is available in this medium publication

Training tutorial