amaye15
Version 1 - Working
78d359b
raw
history blame
280 Bytes
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