I have the following numpy array
blackImg = np.zeros((1920, 1080, 3), np.uint8)
I then have another numpy array which is an actual image with a resolution smaller than 1920x1080.
I then want to insert the actual image over the black 1920x1080 image. The image should be inserted centered.