the following code achieves what I want to accomplish, but uses python lists and is probably very inefficient. Please let me know if there is a way to do the following purely with Numpy:
def makeImageArray(count):
    l = []
    for i in range (count):
        l.append(image)
    res = np.array(l)
    return res
Where image is a numpy array of shape (1200,1200,3).
Thank you so much!
np.stackornp.concatenate