Metadata-Version: 2.4
Name: image-enhancer-punsara99
Version: 1.0.1
Summary: Reusable AI Image Enhancement Package
Author: Punsara Wikramarathna
Author-email: punsarawikramarathna@gmail.com
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: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Image Enhancer

A reusable Python package for image enhancement.

Features

- Major rotation correction
- Minor rotation correction
- Blur removal
- Noise reduction
- Brightness enhancement
- Contrast enhancement
- Quality evaluation
- Iterative enhancement

Installation

pip install image-enhancer

Example

from image_enhancer import ImageEnhancer

engine = ImageEnhancer()

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

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