Metadata-Version: 2.1
Name: image_dehazer
Version: 0.0.5
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 image_dehazer										# Load the library
        
        $ HazeImg = cv2.imread('image_path')						# read input image -- **must be a color image**
        $ HazeCorrectedImg = image_dehazer.remove_haze(HazeImg)		# Remove Haze
        
        $ cv2.imshow('input image', HazeImg);						# display the original hazy image
        $ 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
