gpt4 book ai didi

c++ - 在 Python 或 C++ 中获取像素颜色的最快方法?

转载 作者:行者123 更新时间:2023-11-28 03:52:48 25 4
gpt4 key购买 nike

我正在尝试为我正在制作的透明 Tkinter 小部件添加模糊效果。

我用这一行(片段)使小部件部分透明

self.attributes("-alpha", 0.85)

为了添加我想要的效果,我需要获取小部件中每个单独像素的 RGB 值。由于小部件只是部分不透明,我不能使用 .cget 方法,因为它返回填充 RGB 值(部分透明之前的颜色),而不是实际的 RGB 值。

我目前正在使用这个函数(片段)

def get_pixel_colour(self, i_x, i_y):
i_desktop_window_id = win32gui.GetDesktopWindow()
i_desktop_window_dc = win32gui.GetWindowDC(i_desktop_window_id)
long_colour = win32gui.GetPixel(i_desktop_window_dc, i_x, i_y)
i_colour = int(long_colour)
return (i_colour & 0xff), ((i_colour >> 8) & 0xff), ((i_colour >> 16) & 0xff)

但是,对于我的目的而言,它太慢了。有没有更快的方法来获取像素颜色?

编辑:

如果 Python 对于这个目的来说太慢了,我也可以使用 C++。我只需要获取不同 x、y 坐标处像素的 RGB 值。

最佳答案

您可能希望看一下可以这样调用的 Python 图像库

import Image
im = Image.open("name_of_file.jpg")
list_of_pixels = list(im.getdata())
print list_of_pixels[0]

这将以 RGB 格式输出第一个像素,例如 (255,255,255)它非常快,但我相信它永远不会打败 C++

关于c++ - 在 Python 或 C++ 中获取像素颜色的最快方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4836925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com