nparray和tensor的相互转化

1.array转化为tensor

x = torch.from_numpy(lena_img)

2.tensor转化为array

x=x.numpy()

你可能感兴趣的:(python)