NVIDIA / FastPhotoStyle

Style transfer, deep learning, feature transform
Other
11.11k stars 1.2k forks source link

scipy.misc.imresize function in photo_smooth.py has been deprecated #114

Closed Matoi647 closed 1 year ago

Matoi647 commented 1 year ago

Replace scipy.misc.imresize(deprecated) with np.array(content.resize((h,w))).

scipy.misc.imresize function has been deprecated since scipy 1.3.0 version. Use np.array(content.resize(h,w)) instead.