Metadata-Version: 2.1
Name: fast-colorthief
Version: 0.0.1
Summary: Dominant colors in image
Home-page: https://github/bedapisl/fast-colorthief
Author: Bedrich Pisl
Author-email: bedapisl@gmail.com
License: MIT
Description: # Fast colortheif
        
        A Python module for selecting most dominant colors in the image. Based on https://github.com/fengsp/color-thief-py but faster.
        
        ## Installation
        ```
        pip install fast_colorthief
        ```
        
        ## Example
        ```
        import fast_colorthief
        
        image_path = 'image.jpg'
        
        dominant_color = fast_colorthief.get_dominant_color(image_path)
        color_palette = fast_colorthief.get_palette(image_path)
        ```
        
        ## Benchmark
        1200 x 1200 jpg image
        
        
        | Algorithm | Time per image |
        | ----------| -------------- |
        | Fast colorthief (input numpy array) | 0.0012s |
        | Fast colorthief (input filename) | 0.034s | 
        | Reference (https://github.com/fengsp/color-thief-py) (input filename) | 0.509s |
         
        ## How does it work
        Backend is written in C++ for better performance.
        
        Uses Modified Median Cut Quantization algorithm.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
