ev2hands / app.py
chris10's picture
init
750fc00
raw history blame
No virus
298 Bytes
import cv2
import streamlit as st
st.title("Webcam Live Feed")
run = st.checkbox('Run')
FRAME_WINDOW = st.image([])
camera = cv2.VideoCapture(0)
while run:
_, frame = camera.read()
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
FRAME_WINDOW.image(frame)
else:
st.write('Stopped')