Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Users /
VEGETA /
PycharmProjects /
CÓDIGOSOLT /
Delete
Unzip
Name
Size
Permission
Date
Action
.idea
[ DIR ]
drwxrwxrwx
2023-03-24 03:22
Relogio.py
461
B
-rw-rw-rw-
2023-03-20 01:14
oltTESTE.py
764
B
-rw-rw-rw-
2023-03-18 06:32
Save
Rename
import cv2 cap = cv2.VideoCapture(0) # 0 is the index of the default camera while True: ret, frame = cap.read() if not ret: break # Apply blue color filter to the frame blue_frame = cv2.applyColorMap(frame, cv2.COLORMAP_WINTER) # Show the resulting frame cv2.imshow('Webcam Blue', blue_frame) # Press 'q' to exit if cv2.waitKey(1) == ord('q'): break cap.release() cv2.destroyAllWindows()