Answers for "ploting img show python"

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

Code answers related to "C"

Browse Popular Code Answers by Language