I\'m using numpy to initialize a pixel array to a gray checkerboard (the classic representation for \"no pixels\", or transparent). It seems like there ought to be a whizzy
import numpy as np b = np.array([[0,1],[1,0]])
np.tile(b,(n, n))