Answers for "how to open webcam opencv"

0

access webcam using opencv

import cv2

cap = cv2.VideoCapture(0)

while True:
  ret, frame = cap.read()
  
  cv2.imshow('webcam feed' , frame)
  if cv2.waitKey(1) & 0xFF == ord(' '):
    break
    
cap.release()
cv2.destroyAllWindows()

#by using the spacebar you will be able to finish the process of video capturing
#in opencv and the window will close
Posted by: Guest on October-04-2020
-1

Opencv Webcam

import cv2
frameWidth = 640
frameHeight = 480
cap = cv2.VideoCapture(0)
cap.set(3, frameWidth)
cap.set(4, frameHeight)
cap.set(10,150)
while True:
    success, img = cap.read()
    cv2.imshow("Result", img)
    if cv2.waitKey(1) and 0xFF == ord('q'):
        break
Posted by: Guest on May-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language