Amine-0047 commited on
Commit
361e064
1 Parent(s): 35765c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -27,6 +27,11 @@ def load_tts_model():
27
  def main():
28
  st.title("License Plate Recognition App")
29
 
 
 
 
 
 
30
  # Upload file
31
  uploaded_file = st.file_uploader("Upload an image", type=["jpg", "jpeg", "png"])
32
 
 
27
  def main():
28
  st.title("License Plate Recognition App")
29
 
30
+ # Static test image
31
+ test_image_path = "test_image.jpg"
32
+ test_image = Image.open(test_image_path)
33
+ st.image(test_image, caption='Test Image', use_column_width=True)
34
+
35
  # Upload file
36
  uploaded_file = st.file_uploader("Upload an image", type=["jpg", "jpeg", "png"])
37