JaredBailey commited on
Commit
c10a46f
·
verified ·
1 Parent(s): 4d1a312

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py CHANGED
@@ -23,6 +23,21 @@ if 'image' not in st.session_state:
23
  if 'image_counter' not in st.session_state:
24
  st.session_state.image_counter = 0
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #####
27
  ###
28
  # Upload
 
23
  if 'image_counter' not in st.session_state:
24
  st.session_state.image_counter = 0
25
 
26
+ #####
27
+ ###
28
+ # Loading Screen
29
+ ###
30
+ #####
31
+ # This displays while the model is loading
32
+ # It provides the user with information about the tool
33
+ _, row0_col1, _ = st.columns([1,3,1])
34
+ st.markdown("<h1 style='text-align: center; color: black;'>Find Waldo and His Friends</h1>", unsafe_allow_html=True)
35
+ st.markdown("<h3 style='text-align: center; color: black;'>Using Computer Vision</h3>", unsafe_allow_html=True)
36
+ st.markdown("<p style='text-align: center; color: black;'>\
37
+ This tool allows you to take a photo with your phone of a <i>Where's Waldo?</i> book page. \
38
+ Using the computer vision model YOLOv8 (large option), this tool find Waldo and his friends Wenda, Odlaw, Wizard, and Woof. \
39
+ The model takes about 30 seconds to load before the fun begins. Please be patient...</p>", unsafe_allow_html=True)
40
+
41
  #####
42
  ###
43
  # Upload