Overlay one part of an image on another in OpenCV with Python gary 6 years ago Since these are just big arrays, you can copy one chunk of an image over another: frame[0:h, 0:w] = frame[y:y+h, x:x+w]