Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pshreyam/people-counter-using-computer-vision
https://github.com/pshreyam/people-counter-using-computer-vision
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pshreyam/people-counter-using-computer-vision
- Owner: pshreyam
- Created: 2023-03-03T11:48:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-15T16:57:22.000Z (almost 2 years ago)
- Last Synced: 2024-11-20T00:48:44.262Z (2 months ago)
- Language: Python
- Size: 39.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# People Counter using Computer Vision
This is a simple project that uses computer vision in order to count people inside an area by counting the number of people entering and exiting an area.
## Get Started
To get started, install `python3` or `python` (based on your operating system along with `pip3` or `pip`) and then run the following commands:
```bash
# For Linux/Mac
pip3 install venv
python3 -m venv venv
source ./venv/bin/activate
pip3 install -r requirements.txt
python3 run.py
``````bash
# For Windows
pip install venv
python -m venv venv
venv\Scripts\activate.bat
pip install -r requirements.txt
python run.py
````Note`: If dlib does not get installed using the above dependency, a sample wheel file is given for python3.10. Depending upon the python version, dlib may be needed to be installed using the compatible wheel file.