plt imshow
20230315
import matplotlib.pyplot as plt
plt.imshow(x)
如果x是np image,会直接显示
如果x是pil image,会自动转换为np,再显示
from PIL import Image
img_100th = Image.open(img_100th_path)
plt.imshow(img_100th)
img_100th.size
image size
为(394,404),而np数组的size是(404, 394),展示出来的图片尺寸也是(404, 394),和np数组show出来的图片一致,方向也一致。
参考:
[1] https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.imshow.html
[2] https://pillow.readthedocs.io/en/stable/reference/Image.html