Metadata-Version: 2.4
Name: image-enhancer-ai
Version: 1.0.3
Summary: Reusable AI Image Enhancement Package
Author-email: Punsara Wikramarathna <punsarawikramarathna@gmail.com>
License: MIT
Keywords: image enhancement,opencv,computer vision,image processing,tensorflow,ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: tensorflow
Requires-Dist: scikit-image
Requires-Dist: PyYAML
Dynamic: license-file

# Image Enhancer

A reusable AI-powered image enhancement package.

## Features

- Major Rotation Correction (CNN)
- Minor Rotation Correction
- Blur Detection and Correction
- Noise Reduction
- Brightness Enhancement
- Contrast Enhancement
- Quality Evaluation
- Iterative Enhancement
- Configuration Support

## Installation

```bash
pip install image-enhancer-punsara99
```

## Usage

```python
from image_enhancer import ImageEnhancer

engine = ImageEnhancer()

output, report = engine.process("input.jpg")

engine.save(output, "output.jpg")

engine.print_report(report)
```

## License

MIT
