Spaces:
Running
Running
Update app.py
Browse files
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(
|