mesvak 362 welp this one is gud and something like shitty af you wanna turn the webcam on and make one colorful image and one gray it is ez for doing that we needa use numpy and cv2 [hide] #mesvak dont publish without my gae premission import cv2 import numpy as np cap = cv2.VideoCapture(1) while True: ret, frame = cap.read() gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) cv2.imshow('frame', frame) cv2.imshow('gray', gray) if cv2.waitKey(1) & 0xFF == ord('q'): break cap.release() cv2.destoryAllWindows() [/hide] Quote Share this post Link to post Share on other sites