在利用Python
做图像配准时,需要安装PIL
(Python Image Lib)模块。而PIL官网提示信息为:
“The current free version is PIL 1.1.7. This release supports Python1.5.2 and newer,including 2.5 and 2.6. A version for 3.X will be released later.”
即当前提供的PIL
模块还不支持python3
。此时就需要使用其它模块来替换PIL模块。有人提供了非官方的64位库,叫做Pillow,下载下来,是个.whl 结尾的文件,这个其实就是python
使用的一种压缩文件,后缀名改成zip,可以打开。这个需要用 pip 安装。
在dos中切换至pip文件夹,输入命令“pip install Pillow-4.1.0-cp35-none-win_amd64.whl
”。
至此,Pillow模块安装完成。
在使用时,注意要用 ‘from PIL import Image’ 代替 ‘import Image’。