Currently im using python with the Pillow library
from PIL import ImageGrab
px = ImageGrab.grab().load()
color = px[961, 596]
this works, but its quite slow, im looking for something that can run under ~50ms, i dont need it to be python, any language is fine as long as its fast.
also, im on linux