Answers for "plt.imread python"

0

plt.imread python

# read the image
img = plt.imread('path/to/image')
# show the image
plt.imshow(img)
plt.show()
Posted by: Guest on September-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language