Metadata-Version: 2.1
Name: tf_clahe
Version: 0.0.1
Summary: Contrast limited adaptive histogram equalization implemented in TF ops
Home-page: https://github.com/isears/tf_clahe
Author: Isaac Sears
Author-email: is6gc@virginia.edu
License: UNKNOWN
Description: # Tensorflow CLAHE
        
        ![Pytest](https://github.com/isears/tf_clahe/workflows/Pytest/badge.svg)
        
        Contrast-limited adaptive histogram equalization implemented in tensorflow ops.
        
        ## Setup
        
        ```bash
        pip install tf_clahe
        ```
        
        ## Use
        
        ```python
        import tensorflow as tf
        import tf_clahe
        
        img = tf.io.decode_image(tf.io.read_file('./path/to/your/img'))
        img_clahe = tf_clahe.clahe(img)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
