Metadata-Version: 2.1
Name: SSIM-PIL
Version: 1.0.13
Summary: Comparison of two images using the structural similarity algorithm (SSIM).
Home-page: https://github.com/ChsHub/SSIM-PIL
Author: ChsHub
License: MIT License
Description: # SSIM-PIL
        Comparison of two images using the structural similarity algorithm (SSIM).
        The resulting value varies between 1.0 for identical images and 0.0 for completely different images.
        It's based on the PIL and also supports GPU acceleration via pyopencl.
        
        ## Installation
        `python3 -m pip install SSIM-PIL`
        
        Be sure to install a working version of pyopencl to benefit from faster parallel execution on the GPU. (The code was
        tested with OpenCl version 1.2.)
        
        ## 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) # Compare images using OpenCL by default
        print(value)
        
        value = compare_ssim(image1, image2, GPU=False) #  Compare images using CPU-only version
        print(value)
        
        ```
        
        ## Feedback
        
        For feedback please contact me over github: https://github.com/ChsHub/SSIM-PIL.
        
        ## Donate
        
        If you like my projects, I would appreciate any donation. 
        BTC:    bc1qkam6e23x6v4spdc7w52mwq0nag204meps78y9m
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
