Azim_Health / exercise_detection.py
JamanKH's picture
EEEE
2a3089e
Raw
History Blame Contribute Delete
409 Bytes
import streamlit as st
import requests
def app():
st.subheader('Excercise Detection')
# Define the link to redirect to
link = "https://huggingface.co/spaces/JamanKH/motion_detection"
# Create a button widget
button = st.button("Start Detection")
# If the button is clicked, send a request to the link and display it in an iframe
if button:
st.markdown(link)