-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo.py
More file actions
31 lines (26 loc) · 939 Bytes
/
Copy pathlogo.py
File metadata and controls
31 lines (26 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import cv2
import numpy as np
import time
import os
def display_logo(window_name, logo_path, cap):
ret, frame = cap.read()
if ret:
if os.path.isfile(logo_path):
logo = cv2.imread(logo_path)
logo = cv2.resize(logo, (frame.shape[1], frame.shape[0]))
cv2.imshow(window_name, logo)
cv2.waitKey(1000) # Wait 1 second
fade_out_logo(window_name, logo)
else:
print("Error: Failed to read frame from the camera.")
def fade_out_logo(window_name, logo, fade_duration=2.0):
start_time = time.time()
while True:
elapsed_time = time.time() - start_time
if elapsed_time > fade_duration:
break
alpha = 1 - elapsed_time / fade_duration
overlay = np.zeros(logo.shape, dtype=np.uint8)
cv2.addWeighted(logo, alpha, overlay, 1 - alpha, 0, logo)
cv2.imshow(window_name, logo)
cv2.waitKey(1)