pn23's picture
Update app.py
3fce310 verified
raw
history blame contribute delete
392 Bytes
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")