PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 PixelAccess类提供对PIL.Image数据的读写访问权限(像素级)。访问单个像素相当慢。如果要遍历图像中的所有像素,则可能会使用Pillow API的其他部分的方法更快。 getpixel()返回x,y处的像素。像素作为单个返回
用法: getpixel(self, xy)
参数:
xy:像素坐标,以(x,y)表示。
返回值:单波段图像的像素值,多波段图像的像素值的元组。
使用的图片:
# Importing Image from PIL package
from PIL import Image
# creating a image object
im = Image.open(r"C:\Users\System-Pc\Desktop\leave.jpg")
px = im.load()
print (px[4, 4])
px[4, 4] = (0, 0, 0)
print (px[4, 4])
cordinate = x, y = 150, 59
# using getpixel method
print (im.getpixel(cordinate));
输出:
(130, 105, 49) (0, 0, 0) (75, 19, 0)
另一个例子:在这里,我们更改坐标值。
图片已使用
# Importing Image from PIL package
from PIL import Image
# creating a image object
im = Image.open(r"C:\Users\System-Pc\Desktop\leave.jpg")
px = im.load()
print (px[4, 4])
px[4, 4] = (0, 0, 0)
print (px[4, 4])
cordinate = x, y = 180, 79
# using getpixel method
print (im.getpixel(cordinate));
输出:
(130, 105, 49) (0, 0, 0) (22, 168, 25)
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python os.WIFEXITED()用法及代码示例
- Python os.waitid()用法及代码示例
- Python os.listdir()用法及代码示例
- Python os.uname()用法及代码示例
- Python os.open()用法及代码示例
- Python os.getpid()用法及代码示例
- Python PIL BoxBlur()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python PIL Image.new()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python os.getenv()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | getpixel() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。