Fluospark128 commited on
Commit
573006b
·
verified ·
1 Parent(s): 6092190

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ uploaded_image = st.file_uploader("Upload an image", type=["jpg", "png", "jpeg"]
34
 
35
  if uploaded_image:
36
  image = Image.open(uploaded_image).convert("RGB")
37
- st.image(image, caption="Uploaded Image", use_column_width=True)
38
 
39
  # Preprocess image
40
  processed_image = preprocess_image(image)
 
34
 
35
  if uploaded_image:
36
  image = Image.open(uploaded_image).convert("RGB")
37
+ st.image(image, caption="Uploaded Image", use_container_width=True)
38
 
39
  # Preprocess image
40
  processed_image = preprocess_image(image)