I need to do this on a Windows computer. Are there any programs that provides such a capability? I will be just as satisfied if I can implement this capability in python. I know in python I can get the (rgb_values) at (xy_position) in (my_image.png) as follows:
xy_position = (100, 100)
img = PIL.Image.open("my_image.png")
rgb_image = img.convert("RGB")
rgb_values = rib_image.getpixel(xy_position)
I am also familiar with tkinter, but haven't found a way to make a python program that will pass the appropriate value of (xy_position) to the code above. Using tkinter isn't required.
I looked at all tkinter widgets and it seems none solve the problem.