如何使用PILLOW图像读取图像?

时间:2017-11-13 09:10:54

标签: python python-3.x python-imaging-library pillow

我想用PIL.Image.open()读取图像。但我的图像在不同的路径上。 以下是我的python脚本

的路径
"D:\YY_Aadhi\holy-edge-master\hed\test.py"

以下是我的图像文件的路径。

"D:\YY_Aadhi\HED-BSDS\test\2018.jpg"

from PIL import Image
'''some code here'''
image = Image.open(????)

如何填写问号以访问图像文件。

2 个答案:

答案 0 :(得分:5)

你可以简单地做

from PIL import Image
image = Image.open("D:\\YY_Aadhi\\HED-BSDS\\test\\2018.jpg")

from PIL import Image
directory = "D:\\YY_Aadhi\\HED-BSDS\\test\\2018.jpg"
image = Image.open(directory)
像这样。

如果要定义为目录,则必须在Windows中编写两次转义序列。如果你尝试一些愚蠢的代码会很棒。它对你有很大的帮助。

答案 1 :(得分:1)

image = Image.open("D:\YY_Aadhi\HED-BSDS\test\2018.jpg")不能解决问题吗?