Metadata-Version: 2.1
Name: IQA-Metrics-Toolbox
Version: 2023.0.3
Summary: Image quality assessment metrics toolbox
Author-email: Daniel Gummadi <author@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy (>=1.19.1)
Requires-Dist: cycler (>=0.11.0)
Requires-Dist: fonttools (>=4.28.2)
Requires-Dist: imageio (>=2.11.1)
Requires-Dist: kiwisolver (>=1.3.2)
Requires-Dist: libsvm (>=3.23.0.4)
Requires-Dist: matplotlib (>=3.5.0)
Requires-Dist: networkx (>=2.6.3)
Requires-Dist: opencv-python (>=4.5.4.60)
Requires-Dist: packaging (>=21.3)
Requires-Dist: Pillow (>=9.2.0)
Requires-Dist: pyparsing (>=3.0.6)
Requires-Dist: python-dateutil (>=2.8.2)
Requires-Dist: PyWavelets (>=1.2.0)
Requires-Dist: scikit-image (>=0.18.3)
Requires-Dist: scipy (>=1.7.2)
Requires-Dist: setuptools-scm (>=6.3.2)
Requires-Dist: six (>=1.16.0)
Requires-Dist: tifffile (>=2021.11.2)
Requires-Dist: tomli (>=1.2.2)
Requires-Dist: pandas (>=1.5.1)

# Image Quality Assessment (IQA) Metrics Toolbox
 
## 1. Content

|metric|class|description|better|range|ref|
|:-|:-|:-|:-|:-|:-|
|Peak signal-to-noise ratio (PSNR)|FR|The ratio of the maximum pixel intensity to the power of the distortion.|higher|`[0, inf)`|[[WIKI]](https://en.wikipedia.org/wiki/Peak_signal-to-noise_ratio)|
|Structural similarity (SSIM) index|FR|Local similarity of luminance, contrast and structure of two image.|higher|`(?, 1]`|[[paper]](https://ieeexplore.ieee.org/document/1284395) [[WIKI]](https://en.wikipedia.org/wiki/Structural_similarity)|
|Blind/Referenceless Image Spatial QUality Evaluator|NR|Creates a mapping from features extracted from fitted generalised gaussian distributions to the final quality score using support vector machines to perform regression|higher|`(0, 100]`|[[paper]](https://ieeexplore.ieee.org/document/6272356)|


## Installation

```bash
pip install IQA_Metrics_Toolbox
```
