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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。