

# https://www.globalsino.com/ICs/page4853.html
# Load and then display an image with axes

import numpy as np 
import matplotlib.cbook as cbook 
import matplotlib.image as image 
import matplotlib.pyplot as plt 
 
with cbook.get_sample_data('C:\GlobalSino\images\Tested_Grey.PNG') as image_file: 
    image = plt.imread(image_file) 
 
fig, ax = plt.subplots() 
ax.imshow(image) 
ax.axis('off') 
 
plt.show() 
