I am currently using visual studio code to debug a python file. In that python file is a numpy image. When i try to import matplotlib to display the image, it doesn't show:
- plt.imshow(pred_scores)
<matplotlib.image.AxesImage object at 0x7f3d43e691d0>
- plt.show()
None
- pred_scores
array([[0., 0., 0., ..., 0., 0., 0.],
[0., 0., 0., ..., 0., 0., 0.],
...
Basically nothing happens. Is it actually possible to show an image here?

