Spaces:
Sleeping
Sleeping
File size: 1,289 Bytes
f20fe1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# Bodybuilding Pose Analyzer
A real-time pose analysis tool for bodybuilders that helps analyze and provide feedback on common bodybuilding poses.
## Features
- Real-time pose detection using MediaPipe
- Analysis of common bodybuilding poses:
- Front Double Biceps
- Side Chest
- Back Double Biceps
- Angle measurements for key body parts
- Real-time feedback and corrections
- FPS display
## Requirements
- Python 3.8+
- Webcam
- Required Python packages (listed in requirements.txt)
## Installation
1. Clone the repository:
```bash
git clone <repository-url>
cd bodybuilding_pose_analyzer
```
2. Create a virtual environment (recommended):
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```
3. Install required packages:
```bash
pip install -r requirements.txt
```
## Usage
1. Run the demo script:
```bash
python src/demo.py
```
2. Position yourself in front of the webcam
3. The system will automatically detect your pose and provide feedback
4. Press 'q' to quit the application
## Supported Poses
Currently, the system supports the following poses:
- Front Double Biceps
- Side Chest
- Back Double Biceps
More poses will be added in future updates.
## Contributing
Feel free to submit issues and enhancement requests! |