Metadata-Version: 2.4
Name: deeprehab-movements
Version: 0.1.0
Summary: Movement scoring implementations for DeepRehab
Author: DeepRehab Team
License: MIT
Project-URL: Homepage, https://github.com/wenjiangbaobeiovo2005/Deeprehab-packge
Project-URL: Repository, https://github.com/wenjiangbaobeiovo2005/Deeprehab-packge
Project-URL: Documentation, https://github.com/wenjiangbaobeiovo2005/Deeprehab-packge#readme
Project-URL: Bug Tracker, https://github.com/wenjiangbaobeiovo2005/Deeprehab-packge/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Image Processing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: deeprehab-angles>=0.1.0
Requires-Dist: deeprehab-rules>=0.1.0

# DeepRehab Movements

DeepRehab Movements is a Python package that provides movement analysis and scoring capabilities for rehabilitation exercises. It works with [deeprehab-pose](../deeprehab-pose) and [deeprehab-angles](../deeprehab-angles) to provide a complete rehabilitation analysis solution.

## Features

- Exercise movement scoring
- Form evaluation algorithms
- Integration with pose estimation and angle data
- Extensible design for adding new exercises

## Installation

```bash
pip install deeprehab-movements
```

## Usage

```python
from deeprehab_movements import score_deep_squat

# Score a deep squat exercise
result = score_deep_squat(landmarks)
print(f"Score: {result.score}")
print(f"Reason: {result.reason}")
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
