Cany-Tam commited on
Commit
750dfd6
·
1 Parent(s): 92c96a8

Update pages/04_Super_Resolution.py

Browse files
Files changed (1) hide show
  1. pages/04_Super_Resolution.py +5 -5
pages/04_Super_Resolution.py CHANGED
@@ -250,11 +250,11 @@ if restore:
250
  #im.save("Image.jpg")
251
  with col2:
252
  st.image(output, 'Restored Image')
253
- #st.download_button(
254
- # label="Download Image",
255
- # data=open("Image.jpg", "rb"),
256
- # file_name="Image.jpg",
257
- #)
258
  else:
259
  st.warning('Upload a file', icon="⚠️")
260
 
 
250
  #im.save("Image.jpg")
251
  with col2:
252
  st.image(output, 'Restored Image')
253
+ st.download_button(
254
+ label="Download Image",
255
+ data=open(output, "rb"),
256
+ file_name="Image.jpg"
257
+ )
258
  else:
259
  st.warning('Upload a file', icon="⚠️")
260