Answers for "matplotlib plot to image"

C
1

show image in matplotlib

%pylab inline
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('your_image.png')
imgplot = plt.imshow(img)
plt.show()
Posted by: Guest on March-10-2021
5

save matplotlib figure

plt.savefig('image.png')
Posted by: Guest on July-22-2020

Code answers related to "C"

Browse Popular Code Answers by Language