Defogging
Defogging copied to clipboard
A python package of robust and effective defogging/dehazing method
from defogging import Defog in_name = "/Driectory//MS230321_14.49.37.png" out_name = "Directory/MS230321_14.49.37_defog.png" print('Defog process start') df = Defog() df.read_img(in_name) print('Defog read ended') df.defog() print('Defog ended') df.save_img(out_name) print('Defog process ended') output from script:...
I installed and tested your defogging package. The quality of defogged was good to me, but it is too slow for real-time video application. So I would like to implement...
the None check was failing for value error. checking for nd.array() fixed the issue.