Skip to content

Instantly share code, notes, and snippets.

@Mynuddin-dev
Created May 30, 2022 09:26
Show Gist options
  • Save Mynuddin-dev/c548209b912538834a996c4778f6fa26 to your computer and use it in GitHub Desktop.
Save Mynuddin-dev/c548209b912538834a996c4778f6fa26 to your computer and use it in GitHub Desktop.
Take photo by using webcam
import cv2
def take_photo():
cap = cv2.VideoCapture(0)
ret , frame = cap.read()
cv2.imwrite("SS.png",frame)
cap.release()
take_photo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment