simpleUI / app.py
harshitface2003's picture
Update app.py
7408480 verified
raw
history blame
460 Bytes
import gradio as gr
from gradio_webrtc import WebRTC
with gr.Blocks() as demo:
image = WebRTC(label="Stream", mode="send-receive", modality="video")
conf_threshold = gr.Slider(
label="Confidence Threshold",
minimum=0.0,
maximum=1.0,
step=0.05,
value=0.30,
)
image.stream(
inputs=[image, conf_threshold],
outputs=[image], time_limit=10
)
if __name__ == "__main__":
demo.launch()