Shakers
Junior Member
- Jul 24, 2019
- 109
- 68
Hi there,
Please show me a way to save processed image to local PC HDD.
I am using Python in Google Colab. And my code works fine, transforming images. It ends with the following:
Please show me a way to save processed image to local PC HDD.
I am using Python in Google Colab. And my code works fine, transforming images. It ends with the following:
output = run_style_transfer(cnn, cnn_normalization_mean, cnn_normalization_std,
content_img, style_img, input_img)
plt.figure()
imshow(output, title='Output Image')
plt.ioff()
plt.show()