junyanz / interactive-deep-colorization

Deep learning software for colorizing black and white images with a few clicks.
https://richzhang.github.io/ideepcolor/
MIT License
2.69k stars 447 forks source link

Slight modification required when using Python 3 #68

Open bkmgit opened 5 years ago

bkmgit commented 5 years ago

Needed to modify the file /ui/gui_draw.py when using Python 3, in CPU mode. Needed to change line 48 from self.read_image(image_file.encode('utf-8')) to self.read_image(image_file) when reading in a jpeg image.