This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
def overlay_glass_effect(input_path, glass_path, output_path, alpha=0.5): | |
""" | |
input 사진 위에 glass.png를 합성하여 효과를 적용하는 함수 | |
:param input_path: 원본 이미지 경로 | |
:param glass_path: 유리 패턴 이미지 경로 | |
:param output_path: 결과 이미지 저장 경로 |