Skip to content
Advertisement

Viewing .npy images

How can I view images stored with a .npy extension and save my own files in that format?

Advertisement

Answer

.npy is the file extension for numpy arrays – you can read them using numpy.load:

JavaScript

One of the easiest ways to view them is using matplotlib’s imshow function:

JavaScript

You could also use PIL or pillow:

JavaScript

These functions aren’t part of the Python standard library, so you may need to install matplotlib and/or PIL/pillow if you haven’t already. I’m also assuming that the files are either 2D [rows, cols] (black and white) or 3D [rows, cols, rgb(a)] (color) arrays of pixel values.

enter image description here

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement