Gait-Recognition-YOLO-v8 is a project for gait recognition using YOLO version 8. This document provides basic setup instructions to get you started.
Make sure you have the following installed on your system:
- Python (>=3.6)
- Pip (Python package installer)
-
Clone the repository:
git clone https://github.com/Kartik-Katkar/Gait-Recognition-YOLO-v8.git
-
Navigate to the project directory:
cd Gait-Recognition-YOLO-v8
-
Create a virtual environment (optional but recommended):
python -m venv venv
-
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
-
-
Install the required dependencies:
pip install -r requirements.txt
-
If you wish to Download a pretrained model, you can download it from Download Model make sure to unzip the compressed file to
model/gait/output
Run the gait recognition script:
python3 main.py
Feel free to customize the instructions based on the specific requirements of your project.