Metadata-Version: 2.4
Name: superpyimager-pro
Version: 0.1.0
Summary: An advanced image processing engine and ready-to-use GUI framework.
Author: Hamit Furkan (Hfd)
License: MIT License
Keywords: image processing,opencv,customtkinter,gui framework,computer vision,histogram
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: customtkinter
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: pillow
Dynamic: license-file
Dynamic: requires-python

# SuperPyImager Pro

An advanced, high-performance image processing engine combined with an instant, ready-to-use modern GUI framework. Built entirely on top of OpenCV, NumPy, Matplotlib, and CustomTkinter.

## Features
- **Consolidated Core:** Single-entry core architecture (`core.py`) managing both image processing and interface systems.
- **Image Analytics:** Instant RGB color distribution histograms integrated via Matplotlib.
- **Modern UI Framework:** Fully-customizable dark-mode GUI components powered by CustomTkinter.

## Installation
pip install superpyimager-pro
## Quick Start
Python
import superpyimager as spi

# Launch the built-in GUI framework instantly
app = spi.App(title="SuperPyImager Studio", size="1000x600")

# Inject a custom action button into the control panel
app.add_button("Process Image", command=lambda: print("Processing..."))

# Run the application
app.run()
