Skip to content

Instantly share code, notes, and snippets.

@abdul-rehman-2050
Created April 6, 2016 11:16
Show Gist options
  • Save abdul-rehman-2050/a6faa5121371162859390c54f38779ee to your computer and use it in GitHub Desktop.
Save abdul-rehman-2050/a6faa5121371162859390c54f38779ee to your computer and use it in GitHub Desktop.
read webcam and display grayscale image
import cv2
if __name__ == '__main__':
video_capture = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = video_capture.read()
#convert to grayscale image
imgray = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
# Display the resulting frame
cv2.imshow('Video', imgray)
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