File size: 280 Bytes
78d359b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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