robmarkcole commited on
Commit
5885827
1 Parent(s): dc23fc1

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ if img_file_buffer is not None:
62
  else:
63
  pil_image = Image.open(const.DEFAULT_IMAGE)
64
 
65
- st.text(f"Input image width and height: {pil_image.width} x {pil_image.width}")
66
  start_time = time.time()
67
  results = model(pil_image, size=img_size)
68
  end_time = time.time()
 
62
  else:
63
  pil_image = Image.open(const.DEFAULT_IMAGE)
64
 
65
+ st.text(f"Input image width and height: {pil_image.width} x {pil_image.height}")
66
  start_time = time.time()
67
  results = model(pil_image, size=img_size)
68
  end_time = time.time()