Spaces:
Sleeping
Sleeping
File size: 392 Bytes
fe5fae9 d93302f 61bd756 bb160cb 01832db bce29d2 01832db 41f12a5 fe5fae9 872d904 41f12a5 3fce310 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import streamlit as st
import numpy as np
import cv2
import mediapipe as mp
title = st.title("Welcome to Therapute")
exercise_options = ['Knee Extension', 'MCL Strengthening', 'Dumbbell Thruster', 'External Rotation']
curr_exer = st.radio('Select an exercise', exercise_options)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write(curr_exer)
st.success("Success") |