Metadata-Version: 2.1
Name: SSIM-PIL
Version: 1.0.5
Summary: Structural similarity
Home-page: https://github.com/ChsHub/SSIM-PIL
Author: ChsHub
Author-email: christian1193@web.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# SSIM-PIL
Comparison of two images using the structural similarity algorithm (SSIM). It's compatible with the PIL.
Supports GPU acceleration via pyopencl.

## Installation
`python3 -m pip install SSIM-PIL`

## Usage Example

```python

from SSIM_PIL import compare_ssim
from PIL import Image

image1 = Image.open(path)
image2 = Image.open(path)
value = compare_ssim(image1, image2)
print(value)

```

