Skip to content

Instantly share code, notes, and snippets.

@abdul-rehman-2050
Created April 6, 2016 11:10
Show Gist options
  • Save abdul-rehman-2050/e8ec1a818e70cdf144dad3834e27d1ce to your computer and use it in GitHub Desktop.
Save abdul-rehman-2050/e8ec1a818e70cdf144dad3834e27d1ce to your computer and use it in GitHub Desktop.
simple code to display webcam using python opencv
import cv2
if __name__ == '__main__':
video_capture = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = video_capture.read()
# Display the resulting frame
cv2.imshow('Video', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything is done, release the capture
video_capture.release()
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment