Resources

官方指南PIL Handbook(建议看英文,翻译) pil下载 安装中文指南 from the PythonWare PIL home page

推荐先看Python Imaging Library (PIL) Document(Web form,PDF document,不能访问这里下载) from New Mexico Tech

Abstract

Describes an image-processing library for the Python programming language.

Table of Contents

1. Introduction2. Definitions
2.1. Band2.2. Modes2.3. Sizes2.4. Coordinates2.5. Angles2.6. Bboxes (bounding boxes)2.7. Colors2.8. Filters
3. Creating objects of class Image
3.1. Attributes of the Image object3.2. Methods on the Image object
4. The ImageDraw module5. Image enhancement: the ImageFilter module6. The ImageFont module7. The ImageTk module8. Supported file formats

PPT:PIL Python图像处理模块

还有序媛的博文:

Python图像处理库(PIL)--简介和基本概念
Python图像处理库(PIL)--Image,ImageDraw,ImageChops模块介绍
一些博文:
python image 图像库 操作手册
Python完成简单图像处理任务
Python图像处理常用操作技巧
Python图形图像处理(使用PIL)
python图形处理库Python Image library
怎样使用Python图像处理?
python图形处理库PIL
Python图形图像处理库的介绍
利用PIL剪切出正方形图片
python图形处理库PIL(Python Image Library)
PIL-python的图像处理模块
Python图像处理的好处所在

PIL Tutorial: Converting Between PNG and GIF

Python Cookbook -Chapter 11, introduction by Fredrik Lundh

Recipe 11.7. Converting Among Image Formats

This chapter contains recipes for common GUI tasks, mostly with Tkinter, but also a smattering of wxPython, Qt, image processing, and GUI recipes specific to Jython (for JVMJava Virtual Machine), Mac OS X, and IronPython (for dotNET).

Fredrik Lundh, also known as the eff-bot, is the CTO of Secret Labs AB, a Swedish Python-focused company providing a variety of products and technologies. Fredrik is the world's leading expert on Tkinter (the most popular GUI toolkit for Python), as well as the main author of the Python Imaging Library (PIL).He is also the author of Python Standard Library (O'Reilly), which is a good complement to this volume and focuses on the modules in the standard Python library. Finally, he is a prolific contributor to comp.lang.python, helping novices and experts alike.

Google App Engine-图片 Python API 概述 Python 使用入门指南

在python中使用OpenCV


更强大的图像处理的功能可以使用PyOpencv库

《用Python做科学计算》: Chapter12 OpenCV-图像处理和计算机视觉1  OpenCV-图像处理和计算机视觉2

OpenCV中文网站: OpenCV 的Python接口  Cv中文参考手册 - 图像处理

Pyfun的教程:Python 图像处理系列

python图像处理教程一:反色
python图像处理教程二:镜像
python图像处理教程三:平移
python图像处理教程四:旋转
python图像处理教程五:缩放
python图像处理教程六:错切
python图像处理教程七:计算直方图
python图像处理教程八:直方图均衡化(Histogram Equalization)
python图像处理教程九:计算直方图
python图像处理教程十:空间域图像平滑
python图像处理教程十一:空间域图像锐化(边缘检测)
python图像处理教程十二:伪彩色增强
python图像处理教程十三:二值图腐蚀和膨胀、开闭
python图像处理教程十四:灰度图腐蚀和膨胀、开闭
python图像处理教程十五: 图像的傅立叶变换
python图像处理教程十六:图像的细化(骨架抽取)
from: http://www.cnblogs.com/wei-li/archive/2012/04/19/2445126.html

Python图像处理库PIL -- 学习资源相关推荐

  1. python基础教程:Python图像处理库PIL中图像格式转换的实现

    这篇文章主要介绍了Python图像处理库PIL中图像格式转换的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 在数字图像处理 ...

  2. Python图像处理库PIL中图像格式转换(一)

    参考:https://blog.csdn.net/icamera0/article/details/50843172 在数字图像处理中,针对不同的图像格式有其特定的处理算法.所以,在做图像处理之前,我 ...

  3. Python图像处理库PIL中图像格式转换

    在数字图像处理中,针对不同的图像格式有其特定的处理算法.所以,在做图像处理之前,我们需要考虑清楚自己要基于哪种格式的图像进行算法设计及其实现.本文基于这个需求,使用python中的图像处理库PIL来实 ...

  4. Python图像处理库PIL中的convert函数的用法

    在数字图像处理中,针对不同的图像格式有其特定的处理算法.所以,在做图像处理之前,我们需要考虑清楚自己要基于哪种格式的图像进行算法设计及其实现.本文基于这个需求,使用python中的图像处理库PIL来实 ...

  5. Python图像处理库PIL——resize()函数

    在神经网络的训练与测试中,不同的网络需要的图像大小不一样. 所以,在将图像送入网络之前,我们需要将图像缩放到符合网络维度的大小. 本文基于这个需求,使用python中的图像处理库PIL来实现图像的缩放 ...

  6. Python图像处理库PIL的ImageOps模块介绍 ----- 一些基本的图像操作

    原文地址:http://blog.csdn.net/icamera0/article/details/50785776 原文博主的博客中有相当多的python图像处理操作介绍,如有需要,可移驾原博主博 ...

  7. Python图像处理库PIL的ImageStat模块介绍

    ImageStat模块用于计算整个图像或者图像的一个区域的统计数据. 一.ImageStat模块的函数 1.  Stat 定义1:ImageStat.Stat(image)⇒ Stat instanc ...

  8. Python图像处理库PIL从入门到精通

    https://blog.csdn.net/column/details/pythonpil.html 示例: from PIL import Image import pytesseractpyte ...

  9. Python图像处理库PIL的ImageDraw模块之画出四边形

    参考博客:https://blog.csdn.net/icamera0/article/details/50747084 Polygon 定义:draw.polygon(xy,options) 含义: ...

最新文章

  1. 大年夜排查bug:竟然是同事把Redis用成这鬼样子,坑了我
  2. 前端一HTML:四: html标签
  3. 以array开头的php函数,PHP 常用数组函数详解
  4. [开发笔记]-winfom ListBox控件选中项上下移动排序
  5. 清华大学《操作系统》(六):非连续内存分配 段式、页式、段页式存储管理
  6. Kudu :Service unavailable: Soft memory limit exceeded at xxx% of capacity
  7. python是最美的语言阅读答案_《拯救世界上最美的语言》阅读答案
  8. 今天买到了回家的火车票,有座儿,心情不错.
  9. android 自定义地图标注,Android高德地图自定义Markers【原创】
  10. 矩阵分析与应用课程资料
  11. 四年磨一剑未能成就神话 海思K3的悲剧2009(转自www.study-bbs.com)
  12. (转载)傅里叶分析之掐死教程(完整版)
  13. 远程ubuntu桌面_如何在Ubuntu上设置远程桌面
  14. android 双屏壁纸,高清全面屏双屏壁纸
  15. python中choice的用法_Python3 choice 函数
  16. CCI(Commodity Channel Index顺势指标)指标及其发明人Donald Lambert的前世今生
  17. Spark Job Submit分析
  18. Oracle并发(CONCURREMT)收集统计信息 (文档 ID 1555451.1)
  19. ROM、RAM存储器原理详解以及DRAM、SRAM、SDRAM 、FLASH存储器的介绍
  20. 快速求sin与cos值的方法

热门文章

  1. 美团外卖商家端视频探索之旅
  2. 章磊回答: 姚期智提出的百万富翁难题被破解? 多方安全计算MPC到底是个什么鬼?
  3. 计网 - 传输层协议 TCP:TCP 为什么握手是 3 次、挥手是 4 次?
  4. 实战SSM_O2O商铺_41【前端展示】店铺列表页面Dao+Service+Controller层的实现
  5. 解决java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed
  6. MySQL 中 MyISAM 中的查询为什么比 InnoDB 快?
  7. 数据结构简介以及抽象数据类型的实现
  8. java 中 a = a++ 的分析
  9. C语言如何使用函数交换两个变量的值
  10. python入门之控制结构顺序与选择结构_Python 入门之控制结构 - 顺序与选择结构——第1关:顺序结构...