neural_artistic_style
neural_artistic_style copied to clipboard
PNG support?
i have no time to test png now. thanks for your work. i will be glad if you give short answer. PNG support?
Yes.
How about PNG transparent tile? is there problem with it?
Just discard the alpha channel. This can be done from Python by replacing
def imread(path):
return scipy.misc.imread(path).astype(dp.float_)
with
def imread(path):
return scipy.misc.imread(path).astype(dp.float_)[..., :3]
great response! have good time.