Spaces:
Sleeping
Sleeping
File size: 754 Bytes
39b6f59 bf1822d 39b6f59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import streamlit as st
import cv2
def main():
st.set_page_config(page_title="Streamlit WebCam App")
st.title("Webcam Display Steamlit App")
st.caption("Powered by OpenCV, Streamlit")
cap = cv2.VideoCapture(0)
frame_placeholder = st.empty()
stop_button_pressed = st.button("Stop")
while cap.isOpened() and not stop_button_pressed:
ret, frame = cap.read()
if not ret:
st.write("Video Capture Ended")
break
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
frame_placeholder.image(frame,channels="RGB")
if cv2.waitKey(1) & 0xFF == ord("q") or stop_button_pressed:
break
cap.release()
cv2.destroyAllWindows()
if __name__ == "__main__":
main()
|