I am trying to open image with normal photo viewer but PIL module always opens up Photoshop to show image.
from PIL import Image
image1 = Image.open("images/dog_1.jpg")
image1.show()
I am trying to open image with normal photo viewer but PIL module always opens up Photoshop to show image.
from PIL import Image
image1 = Image.open("images/dog_1.jpg")
image1.show()
2
Answers
Looks like your default image viewer is set to Photoshop. Try changing to another app in your system settings. If you are on windows 10, then navigate to Settings > Apps > Default apps and change ‘Photo viewer’ app to the one you want.
I would suggest you to use openCV instead.