MayankSingal / PyTorch-Image-Dehazing

PyTorch implementation of some single image dehazing networks.
MIT License
345 stars 61 forks source link

I think it's very good #1

Open zgdgod opened 5 years ago

zgdgod commented 5 years ago

Because I run it in windows, the file name is different from linux,.

e.g. get a file name data/data\\NYU2_9_2_3.jpg

so I run it after this fix:

in dataloader.py line27 image = image.split("/")[-1][5:]

it worked 2333 thanks

Rahk92 commented 5 years ago

Thanks a lot! Your comment was helpful for me to run the code in Windows.

JiechaoSheng commented 4 years ago

Thanks

18119496488 commented 4 years ago

thank you!

Mr-Y-B-L commented 2 years ago

thanks

EvanZouQ commented 3 months ago

image = image.split("/")[-1][5:]

Thanks you very much.