Skip to main content

remove haze from images

Project 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:

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!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

image_dehazer-0.0.1.tar.gz (4.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page