I am in need for a way to display a 1d or 2d list of tuples containing values for red, green and blue in a fast way. Like 60fps. The picture will be about 500x500 px and would change slightly every frame. I am not looking for something like:
from PIL import Image
import numpy as np
img = Image.fromarray(np.asarray(THE_IMAGE_LIST, dtype=np.uint8))
img.show()
I have tried using the console, but console buffering is difficult at best with python.