如果我打开一个图像open("image.jpg")
我怎样才能得到一个像素假设我有像素的坐标的RGB值?
那么,我该怎么办的这种反向? 一个空白的图形,“写”具有一定的RGB值的像素开始?
如果我没有下载任何额外的库我宁愿。
如果我打开一个图像open("image.jpg")
我怎样才能得到一个像素假设我有像素的坐标的RGB值?
那么,我该怎么办的这种反向? 一个空白的图形,“写”具有一定的RGB值的像素开始?
如果我没有下载任何额外的库我宁愿。
这也可能是最好使用Python的图像库做到这一点这恐怕是一个单独的下载。
做你想做什么,最简单的方法是通过图像对象的load()方法返回一个像素访问对象,您可以操控像一个数组:
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。
PyPNG -轻量级PNG解码器/编码器
虽然问题暗示JPG,我希望我的回答将是有益的一些人。
下面是如何读取和写入使用PNG像素PyPNG模块 :
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是单纯Python模块小于4000线长,包括测试和评价。
PIL是一个比较全面的影像库,但它也显著较重。
使用枕头 (这与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]
一个完整的,简单易用的解决方案
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
正如戴维·韦伯说:
这是我工作的代码片段从打印的图像的像素颜色:
import os, sys import Image im = Image.open("image.jpg") x = 3 y = 4 pix = im.load() print pix[x,y]
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
有题为wiki.wxpython.org一个真正的好文章正与形象 。 文中提到使用wxWidgets(wxImage),PIL或PythonMagick的方法可行。 就个人而言,我用PIL和wxWidgets的无一不使图像处理相当容易。
您可以使用pygame中的surfarray模块。 该模块具有一个三维像素阵列返回方法称为pixels3d(表面)。 我下面显示用法:
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的使用寿命。
图像处理是一个复杂的话题,它是最好的,如果你使用的库。 我可以推荐gdmodule提供从内部的Python容易获得许多不同的图像格式。
使用命令安装PIL“sudo易于得到安装python-成像”,并运行下面的程序。 它将打印图像的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]
您可以使用Tkinter的模块,这是标准的Python接口Tk的GUI工具包,你不需要额外下载。 见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(" ")))
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img=mpimg.imread('Cricket_ACT_official_logo.png')
imgplot = plt.imshow(img)
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
如果你正在寻找有一个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)
这可能会为你工作。