Answers for "python plot jpg image"

0

python plot jpg image

%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 October-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language