You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Unix platforms, this method saves the image to a temporary PPM file, and calls the xv utility. On Windows, it saves the image to a temporary BMP file, and uses the standard BMP display utility to show it (usually Paint).
Not sure if I can solve this for now or if it will prove to be problematic for our workflows. Possibly check image visualization with opencv-python.
The text was updated successfully, but these errors were encountered:
valentinitnelav
changed the title
Window name doesn't match the name of the image file
Window name doesn't match the name of the image file in Windows OS
Oct 27, 2022
This is because the
PIL | Image.show()
method opens a temporary PNG file for the current image file (under Windows).In
im.show(title=img_path)
title doesn't work as expected, see:Title not displayed when using Image.show(title='...') python-pillow/Pillow#5739
Not sure if I can solve this for now or if it will prove to be problematic for our workflows. Possibly check image visualization with opencv-python.
The text was updated successfully, but these errors were encountered: