Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ if uploaded_file is not None:
|
|
57 |
#display image when done.
|
58 |
with col2:
|
59 |
result = Image.open('out.png')
|
60 |
-
st.image(result, width=
|
61 |
buf = BytesIO()
|
62 |
result.save(buf, format="JPEG")
|
63 |
byte_im = buf.getvalue()
|
|
|
57 |
#display image when done.
|
58 |
with col2:
|
59 |
result = Image.open('out.png')
|
60 |
+
st.image(result, width=500)
|
61 |
buf = BytesIO()
|
62 |
result.save(buf, format="JPEG")
|
63 |
byte_im = buf.getvalue()
|