PythonWebCamFeed.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import cv2 | |
import time | |
# init camera | |
execution_path = os.getcwd() | |
camera = cv2.VideoCapture(0) | |
while True: | |
# Init and FPS process | |
start_time = time.time() | |
# Grab a single frame of video | |
ret, frame = camera.read() | |
# calculate FPS >> FPS = 1 / time to process loop | |
fpsInfo = "FPS: " + str(1.0 / (time.time() - start_time)) | |
print(fpsInfo) | |
cv2.putText(frame, fpsInfo, (10, 10), cv2.FONT_HERSHEY_SIMPLEX, 0.4, (255, 255, 255), 1) | |
# Display the resulting image | |
cv2.imshow('Video', frame) | |
# Hit 'q' on the keyboard to quit! | |
if cv2.waitKey(1) & 0xFF == ord('q'): | |
break | |
# Release handle to the webcam | |
camera.release() | |
cv2.destroyAllWindows() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment