Sign in to follow this  
mesvak

this one funny af HOW to turn laptop cam on and make images python

Recommended Posts

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]

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this