Closed dklingmann closed 3 years ago
scipt.misc.toimage is deprecated and was removed in 1.2.0. Instead, Pillow's Image.fromarray works: from PIL.Image import fromarray fromarray(image_numpy).save(s, format="jpeg")
from PIL.Image import fromarray
fromarray(image_numpy).save(s, format="jpeg")
https://github.com/yanx27/EverybodyDanceNow_reproduce_pytorch/blob/a740351bc422a5322339d3bcee2fb25510a01a19/src/pix2pixHD/util/visualizer.py#L49
scipt.misc.toimage is deprecated and was removed in 1.2.0. Instead, Pillow's Image.fromarray works:
from PIL.Image import fromarray
fromarray(image_numpy).save(s, format="jpeg")
https://github.com/yanx27/EverybodyDanceNow_reproduce_pytorch/blob/a740351bc422a5322339d3bcee2fb25510a01a19/src/pix2pixHD/util/visualizer.py#L49