Update app.py
Browse files
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",
|
| 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)
|