Image-Contrast-Enhancement icon indicating copy to clipboard operation
Image-Contrast-Enhancement copied to clipboard

Python implementation of "A New Image Contrast Enhancement Algorithm Using Exposure Fusion Framework", CAIP2017

Results 14 Image-Contrast-Enhancement issues
Sort by recently updated
recently updated
newest added

I have created a batch processor for Ying (that also outputs as .png) . All that is required is a folder called input and a folder called output and running...

only change the def main,code as follow: def main(): test_path = 'testdata' save_path = 'result' imgs = os.listdir(test_path) time_sum = 0 for file in imgs: # img_name = sys.argv[1] img_name...

Bumps [numpy](https://github.com/numpy/numpy) from 1.18.2 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

I encounter with that error trying to run dhe.py /home/atasoy/.local/lib/python3.6/site-packages/numpy/lib/function_base.py:2534: RuntimeWarning: invalid value encountered in true_divide c /= stddev[:, None] /home/atasoy/.local/lib/python3.6/site-packages/numpy/lib/function_base.py:2535: RuntimeWarning: invalid value encountered in true_divide c /= stddev[None,...

Hello, thank you for releasing your work on GitHub. Could you provide license for this project?

Hello, how did you push this over? ![s](https://user-images.githubusercontent.com/51892980/110061219-2f7fa300-7da2-11eb-86be-206fd12200a0.png)

Hi, I was wondering if you would want to be able to export the image as a PNG instead of just showing it in the plt.show. All you need to...

import numpy as np import matplotlib.pyplot as plt import imageio import scipy, scipy.misc, scipy.signal import cv2 import sys def computeTextureWeights(fin, sigma, sharpness): dt0_v = np.vstack((np.diff(fin, n=1, axis=0), fin[0,:]-fin[-1,:])) dt0_h =...

Thanks for your python implement and amazing result, but its slow speed is a problem, do you consider re-implement by Pytorch to accelerate using GPU?

For images like this one (images with text of low contrast), what parameters should I change for a better result? ![contrast](https://user-images.githubusercontent.com/22419710/61808921-5a55f700-ae0a-11e9-8d61-f0b1bbe03a2d.jpeg) I tried the default values with dhe.py and ying.py,...