import cv2
import matplotlib.pyplot as plt
a = 0.0
count = 0
while(a <= 1.0):
img1 = cv.imread('ref.jpg')
img2 = cv.imread('result2.jpg')
# img1 사진은 점점 투명해지고 img2 사진은 점점 불투명해짐
b = 1.0 - a
dst = cv.addWeighted(img1, a, img2, b, 0)
cv.imshow('dst', dst)
cv.waitKey(0)
cv2.imwrite(f'blending{count}.jpg', dst)
count += 1
a = a + 0.1
cv.destroyAllWindows()
'Python' 카테고리의 다른 글
파이썬/ sklearn/가장 근사한 방정식 구하기/다항회귀 (0) | 2021.11.26 |
---|---|
Seaborn, Matplotlib (0) | 2020.10.04 |
마크다운 요약 (0) | 2020.09.29 |
Python_우리나라 아기이름 데이터 분석 (1) | 2020.09.15 |
Python_데이터분석2 (0) | 2020.09.15 |