参考链接:
python 图片二值化处理(处理后为纯黑白的图片)
Python—python3.7.0—如何安装PIL
调试问题总结:
Python OSError: [Errno 22] Invalid argument:的出现和解决
针对自己问题的具体解决:
将windows中路径里面的右斜线全部改变为左斜线。
代码展示:
# -*- coding: utf-8 -*-
# 图片二值化
from PIL import Image
img = Image.open('F:/geany_python_codes/analysis_py/binary_image/test.jpg')
# 模式L为灰色图像,它的每个像素用8个bit表示,0表示黑,255表示白,其他数字表示不同的灰度。
Img = img.convert('L')
Img.save("F:/geany_python_codes/analysis_py/binary_image/test_gray.png")
# 自定义灰度界限,大于这个值为黑色,小于这个值为白色
threshold = 200
table = []
for i in range(256):
if i < threshold:
table.append(0)
else:
table.append(1)
# 图片二值化
photo = Img.point(table, '1')
photo.save("F:/geany_python_codes/analysis_py/binary_image/test_binary.png")