当我在函数中匹配某个条件时,我试图在python中弹出图像5秒钟。
Img=Image.open('D:\\Capture.PNG')
Img.show()
但是此代码会在Windows照片查看器中打开图像。
提前致谢
答案 0 :(得分:1)
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image
ImageAddress = '/home/yourfolder/yoursample.jpg'
ImageItself = Image.open(ImageAddress)
ImageNumpyFormat = np.asarray(ImageItself)
plt.imshow(ImageNumpyFormat)
plt.draw()
plt.pause(5) # pause how many seconds
plt.close()
希望这有帮助。