8-3Paste.py

000: import cv2
001:
002: def __main():
003: img = cv2.imread(‘IMG_1630_2.jpg’)
004: overLay = cv2.imread(‘IMG_1630_2_T.jpg’)
005: org = img.copy()
006:
007: height, width, _ = overLay.shape
008: # 貼り付けの開始座標
009: x = 50
010: y = 30
011: # ここで合成
012: img[y: y + height, x: x + width] = overLay
013: cv2.imshow(‘Final result’, img)
014: cv2.imshow(‘Original’, org)
015:
016: cv2.waitKey(0)
017: cv2.destroyAllWindows()
018:
019: if __name__ == ‘__main__’:
020: print(cv2.__version__)
021:
022: __main()