目标检测结果 每一帧的目标检测结果 都存到了npy文件里 该如何可视化npy文件里的图片呀
import numpy as np import matplotlib.pyplot as plt npy= np.load('xxx.npy') plt.imshow(npy) plt.show()