Skip to content
Snippets Groups Projects
Commit 033f753a authored by leichter's avatar leichter
Browse files

update scrit files

parent 56b6d53b
No related branches found
No related tags found
No related merge requests found
from PIL import Image
import matplotlib.pyplot as plt
if __name__ == '__main__':
# Load the image
image_path = 'test.jpg' # Replace with your image file path
image = Image.open(image_path)
# Display the image
plt.imshow(image)
plt.axis('off') # Turn off axis labels
plt.show()
pillow
matplotlib
\ No newline at end of file
test.jpg 0 → 100644
test.jpg

147 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment