Spaces:
Sleeping
Sleeping
| 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") |