import numpy as np import matplotlib.pyplot as plt # Load the image data from the .npy file image = np.load("/Users/andrewmayes/Dev/image/image.npy") # Display the image using matplotlib plt.imshow(image) plt.axis("off") # Turn off the axis labels plt.show() # Show the image