Metadata-Version: 2.1
Name: image-dehazer
Version: 0.0.1
Summary: remove haze from images
Home-page: https://github.com/Utkarsh-Deshmukh/Single-Image-Dehazing-Python
Author: utkarsh-deshmukh
Author-email: utkarsh.deshmukh@gmail.com
License: MIT
Download-URL: https://github.com/Utkarsh-Deshmukh/Single-Image-Dehazing-Python/archive/master.zip
Description: # Single-Image-Dehazing-Python
        python implementation of the paper: "Efficient Image Dehazing with Boundary Constraint and Contextual Regularization"
        
        
        ## Quickstart
        This library performs image dehazing.
        
        ## Installation
        
        To install, run:
        ```
        pip install image_dehazer
        ```
        
        ## Usage:
        ```Python
        import ImageDehazer										# Load the library
        
        HazeImg = cv2.imread('image_path', 0)					# read input image
        Dehazer = ImageDehazer()								# create the dehazer object
        HazeCorrectedImg = Dehazer.remove_haze(HazeImg)			# call the dehazing function
        cv2.imshow('enhanced_image', HazeCorrectedImg);			# display the result
        cv2.waitKey(0)											# hold the display window
        ```
        As easy as that!
        
Keywords: Single Image Dehazing,Haze Removal
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
