ChatGPT解决这个技术问题 Extra ChatGPT

如何在 Python 中读取给定像素的 RGB 值?

如果我使用 open("image.jpg") 打开图像,假设我有像素的坐标,我如何获得像素的 RGB 值?

那么,我该如何做相反的事情呢?从一个空白图形开始,“写”一个具有特定 RGB 值的像素?

如果我不必下载任何其他库,我会更喜欢。


M
Matthew Smith

最好使用 Python Image Library 来执行此操作,恐怕是单独下载。

最简单的方法是通过 load() method on the Image object 返回一个像素访问对象,您可以像数组一样操作该对象:

from PIL import Image

im = Image.open('dead_parrot.jpg') # Can be many different formats.
pix = im.load()
print im.size  # Get the width and hight of the image for iterating over
print pix[x,y]  # Get the RGBA Value of the a pixel of an image
pix[x,y] = value  # Set the RGBA Value of the image (tuple)
im.save('alive_parrot.png')  # Save the modified pixels as .png

或者,查看 ImageDraw,它为创建图像提供了更丰富的 API。


幸运的是,在 Linux 和 Windows 中安装 PIL 非常简单(不了解 Mac)
@ArturSapek,我通过 pip 安装了 PIL,这相当容易。
我在我的 Mac (Pypi) 上使用了这个:easy_install --find-links http://www.pythonware.com/products/pil/ Imaging
对于未来的读者:pip install pillow 将成功且相当快速地安装 PIL(如果不在 virtualenv 中,可能需要 sudo)。
pillow.readthedocs.io/en/latest/… 显示 Windows 安装步骤中的 bash 命令。不知道如何进行。
M
Martin Thoma

使用 Pillow(适用于 Python 3.X 和 Python 2.7+),您可以执行以下操作:

from PIL import Image
im = Image.open('image.jpg', 'r')
width, height = im.size
pixel_values = list(im.getdata())

现在你有了所有的像素值。如果是 RGB 或其他模式可以通过 im.mode 读取。然后您可以通过以下方式获得像素 (x, y)

pixel_values[width*y+x]

或者,您可以使用 Numpy 并重塑数组:

>>> pixel_values = numpy.array(pixel_values).reshape((width, height, 3))
>>> x, y = 0, 1
>>> pixel_values[x][y]
[ 18  18  12]

一个完整且易于使用的解决方案是

# Third party modules
import numpy
from PIL import Image


def get_image(image_path):
    """Get a numpy array of an image so that one can access values[x][y]."""
    image = Image.open(image_path, "r")
    width, height = image.size
    pixel_values = list(image.getdata())
    if image.mode == "RGB":
        channels = 3
    elif image.mode == "L":
        channels = 1
    else:
        print("Unknown mode: %s" % image.mode)
        return None
    pixel_values = numpy.array(pixel_values).reshape((width, height, channels))
    return pixel_values


image = get_image("gradient.png")

print(image[0])
print(image.shape)

冒烟测试代码

您可能不确定宽度/高度/通道的顺序。出于这个原因,我创建了这个渐变:

https://i.stack.imgur.com/H70ww.png

图像的宽度为 100 像素,高度为 26 像素。它具有从 #ffaa00(黄色)到 #ffffff(白色)的颜色渐变。输出是:

[[255 172   5]
 [255 172   5]
 [255 172   5]
 [255 171   5]
 [255 172   5]
 [255 172   5]
 [255 171   5]
 [255 171   5]
 [255 171   5]
 [255 172   5]
 [255 172   5]
 [255 171   5]
 [255 171   5]
 [255 172   5]
 [255 172   5]
 [255 172   5]
 [255 171   5]
 [255 172   5]
 [255 172   5]
 [255 171   5]
 [255 171   5]
 [255 172   4]
 [255 172   5]
 [255 171   5]
 [255 171   5]
 [255 172   5]]
(100, 26, 3)

注意事项:

形状是(宽度,高度,通道)

图像[0],因此是第一行,有 26 个相同颜色的三元组


Pillow 在 macosx 上支持 python 2.7,而我只在 PIL 上找到 python 2.5 支持。谢谢!
小心,“重塑”参数列表应该是(高度、宽度、通道)。对于 rgba 图像,您可以包含 image.mode = RGBA 与 channels = 4
@gmarsi 的观点在宽度和高度上是否正确?真的是两者都有效吗?您需要了解数据的输出方式,以便了解输出数组的形状以及图像的行和列像素数据的位置。
@Kioshiki 我在答案中添加了“烟雾测试”部分,因此更容易分辨。
m
martineau

PyPNG - 轻量级 PNG 解码器/编码器

尽管问题暗示了JPG,但我希望我的回答对某些人有用。

以下是使用 PyPNG module 读取和写入 PNG 像素的方法:

import png, array

point = (2, 10) # coordinates of pixel to be painted red

reader = png.Reader(filename='image.png')
w, h, pixels, metadata = reader.read_flat()
pixel_byte_width = 4 if metadata['alpha'] else 3
pixel_position = point[0] + point[1] * w
new_pixel_value = (255, 0, 0, 0) if metadata['alpha'] else (255, 0, 0)
pixels[
  pixel_position * pixel_byte_width :
  (pixel_position + 1) * pixel_byte_width] = array.array('B', new_pixel_value)

output = open('image-with-red-dot.png', 'wb')
writer = png.Writer(w, h, **metadata)
writer.write_array(output, pixels)
output.close()

PyPNG 是一个不到 4000 行的纯 Python 模块,包括测试和注释。

PIL 是一个更全面的图像库,但也明显更重。


M
Matthew Smith

正如戴夫韦伯所说:

这是我从图像中打印像素颜色的工作代码片段: import os, sys import Image im = Image.open("image.jpg") x = 3 y = 4 pix = im.load() print pix[x,是]


为什么我在运行 Lachlan Phillips 的代码时会得到四个值?我给出这个: print(pix[10,200]) 我得到这个: (156, 158, 157, 255) 为什么?
造成这种情况的原因可能是因为您的图像支持 alpha 透明度并且是 rgba 格式,这意味着第四个值是该像素的透明度。
为什么我会收到这个错误??? File "/home/UbuntuUser/.local/lib/python3.8/site-packages/PIL/Image.py", line 3008, in open raise UnidentifiedImageError( PIL.UnidentifiedImageError: cannot identify image file 'test_images/test_UAV.tif')
P
Peter V
photo = Image.open('IN.jpg') #your image
photo = photo.convert('RGB')

width = photo.size[0] #define W and H
height = photo.size[1]

for y in range(0, height): #each pixel has coordinates
    row = ""
    for x in range(0, width):

        RGB = photo.getpixel((x,y))
        R,G,B = RGB  #now you can use the RGB value

K
KalamariKing

使用名为 Pillow 的库,您可以将其变成一个函数,以便在您的程序中稍后使用,如果您必须多次使用它。该函数只接受图像的路径和您要“抓取”的像素的坐标。它打开图像,将其转换为 RGB 颜色空间,并返回请求像素的 R、G 和 B。

from PIL import Image
def rgb_of_pixel(img_path, x, y):
    im = Image.open(img_path).convert('RGB')
    r, g, b = im.getpixel((x, y))
    a = (r, g, b)
    return a

*注意:我不是这段代码的原作者;它没有任何解释。由于它相当容易解释,我只是提供上述解释,以防万一有人不理解它。


虽然此代码段可能是解决方案,但 including an explanation 确实有助于提高帖子的质量。请记住,您正在为将来的读者回答问题,而这些人可能不知道您的代码建议的原因。
G
Greg Hewgill

图像处理是一个复杂的主题,最好确实使用库。我可以推荐 gdmodule,它可以轻松访问 Python 中的许多不同图像格式。


有人知道为什么这被否决了吗? libgd 是否存在已知问题? (我从未看过它,但很高兴知道有 PiL 的替代品)
J
Jon Cage

wiki.wxpython.org 上有一篇非常好的文章,标题为 Working With Images。文章提到了使用 wxWidgets (wxImage)、PIL 或 PythonMagick 的可能性。就个人而言,我使用过 PIL 和 wxWidgets,它们都使图像处理变得相当容易。


3
3 revs Ozgur Sonmez

您可以使用 pygame 的 surfarray 模块。该模块有一个 3d 像素数组返回方法,称为 pixel3d(surface)。我在下面展示了用法:

from pygame import surfarray, image, display
import pygame
import numpy #important to import

pygame.init()
image = image.load("myimagefile.jpg") #surface to render
resolution = (image.get_width(),image.get_height())
screen = display.set_mode(resolution) #create space for display
screen.blit(image, (0,0)) #superpose image on screen
display.flip()
surfarray.use_arraytype("numpy") #important!
screenpix = surfarray.pixels3d(image) #pixels in 3d array:
#[x][y][rgb]
for y in range(resolution[1]):
    for x in range(resolution[0]):
        for color in range(3):
            screenpix[x][y][color] += 128
            #reverting colors
screen.blit(surfarray.make_surface(screenpix), (0,0)) #superpose on screen
display.flip() #update display
while 1:
    print finished

我希望对您有所帮助。最后一句话:屏幕在 screenpix 的生命周期内被锁定。


u
user3423024

使用命令“sudo apt-get install python-imaging”安装 PIL 并运行以下程序。它将打印图像的 RGB 值。如果图像很大,则使用“>”将输出重定向到文件,稍后打开文件以查看 RGB 值

import PIL
import Image
FILENAME='fn.gif' #image can be in gif jpeg or png format 
im=Image.open(FILENAME).convert('RGB')
pix=im.load()
w=im.size[0]
h=im.size[1]
for i in range(w):
  for j in range(h):
    print pix[i,j]

c
chenlian

您可以使用 Tkinter 模块,它是 Tk GUI 工具包的标准 Python 接口,您不需要额外下载。请参阅https://docs.python.org/2/library/tkinter.html

(对于 Python 3,Tkinter 被重命名为 tkinter)

以下是设置 RGB 值的方法:

#from http://tkinter.unpythonic.net/wiki/PhotoImage
from Tkinter import *

root = Tk()

def pixel(image, pos, color):
    """Place pixel at pos=(x,y) on image, with color=(r,g,b)."""
    r,g,b = color
    x,y = pos
    image.put("#%02x%02x%02x" % (r,g,b), (y, x))

photo = PhotoImage(width=32, height=32)

pixel(photo, (16,16), (255,0,0))  # One lone pixel in the middle...

label = Label(root, image=photo)
label.grid()
root.mainloop()

并获得 RGB:

#from http://www.kosbie.net/cmu/spring-14/15-112/handouts/steganographyEncoder.py
def getRGB(image, x, y):
    value = image.get(x, y)
    return tuple(map(int, value.split(" ")))

R
Rob
import matplotlib.pyplot as plt
import matplotlib.image as mpimg

img=mpimg.imread('Cricket_ACT_official_logo.png')
imgplot = plt.imshow(img)

M
Matthew Smith

如果您正在寻找 RGB 颜色代码形式的三位数字,那么下面的代码应该可以做到这一点。

i = Image.open(path)
pixels = i.load() # this is not a list, nor is it list()'able
width, height = i.size

all_pixels = []
for x in range(width):
    for y in range(height):
        cpixel = pixels[x, y]
        all_pixels.append(cpixel)

这可能对你有用。


所以,如果不是图像路径,我有一个列表,其中包含从图像中提取(而不是存储为图像)的区域的像素,我该如何读取像素值?