我正在尝试从鼠标在图像中点击的位置获取RGB值
我试图用Tkinter来完成这一切,以保持代码简单(由于某种原因我无法正确安装PIL),我不知道是否可能。谢谢你的帮助,我很难过。
from serial import *
import Tkinter
class App:
def __init__(self):
# Set up the root window
self.root = Tkinter.Tk()
self.root.title("Color Select")
# Useful in organization of the gui, but not used here
#self.frame = Tkinter.Frame(self.root, width=640, height=256)
#self.frame.bind("<Button-1>", self.click)
#self.frame.pack()
# LABEL allows either text or pictures to be placed
self.image = Tkinter.PhotoImage(file = "hsv.ppm")
self.label = Tkinter.Label(self.root, image = self.image)
self.label.image = self.image #keep a reference see link 1 below
# Setup a mouse event and BIND to label
self.label.bind("<Button-1>", self.click)
self.label.pack()
# Setup Tkniter's main loop
self.root.mainloop()
def click(self, event):
print("Clicked at: ", event.x, event.y)
if __name__ == "__main__":
App()
答案 0 :(得分:1)
如果您使用的是Python 2.5或&gt ;,则可以使用ctypes库来调用返回像素颜色值的dll函数。使用Tkinter的x和y _root方法,您可以返回像素的绝对值,然后使用GetPixel函数进行检查。这是在Windows 7,Python 2.7上测试的:
from Tkinter import *
from ctypes import windll
root = Tk()
def click(event):
dc = windll.user32.GetDC(0)
rgb = windll.gdi32.GetPixel(dc,event.x_root,event.y_root)
r = rgb & 0xff
g = (rgb >> 8) & 0xff
b = (rgb >> 16) & 0xff
print r,g,b
for i in ['red', 'green', 'blue', 'black', 'white']:
Label(root, width=30, background=i).pack()
root.bind('<Button-1>', click)
root.mainloop()
参考文献:
Faster method of reading screen pixel in Python than PIL?
http://www.experts-exchange.com/Programming/Microsoft_Development/Q_22657547.html
答案 1 :(得分:1)
好吧,我崩溃并安装了PIL。我能够使像素集合正常工作,但是现在我无法发送序列...
def click(self, event):
im = Image.open("hsv.ppm")
rgbIm = im.convert("RGB")
r,g,b = rgbIm.getpixel((event.x, event.y))
colors = "%d,%d,%d\n" %(int(r),int(g),int(b))
#print("Clicked at: ", event.x, event.y)
# Establish port and baud rate
serialPort = "/dev/ttyACM0"
baudRate = 9600
ser = Serial(serialPort, baudRate, timeout = 0, writeTimeout = 0)
ser.write(colors)
print colors