grbell commited on
Commit
8bc92e4
·
verified ·
1 Parent(s): d2e9a17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -44,7 +44,8 @@ file_name = st.file_uploader("Upload an image")
44
 
45
  if file_name is not None:
46
  col1, col2 = st.columns(2)
47
- image = load_image(image=file_name.name)
 
48
  col1.image(image, use_container_width=True)
49
 
50
  video = pipe(
 
44
 
45
  if file_name is not None:
46
  col1, col2 = st.columns(2)
47
+ #image = load_image(image=file_name.name)
48
+ image = Image.open(file_name)
49
  col1.image(image, use_container_width=True)
50
 
51
  video = pipe(