Update app.py
Browse files
app.py
CHANGED
@@ -371,7 +371,7 @@ def main():
|
|
371 |
with st.spinner('Processing image...'):
|
372 |
processed_image = st.session_state.analyzer.preprocess_image(uploaded_file)
|
373 |
if processed_image:
|
374 |
-
image_placeholder.image(processed_image, caption='Uploaded Image',
|
375 |
|
376 |
# Analyze image with progress bar
|
377 |
progress_bar = st.progress(0)
|
|
|
371 |
with st.spinner('Processing image...'):
|
372 |
processed_image = st.session_state.analyzer.preprocess_image(uploaded_file)
|
373 |
if processed_image:
|
374 |
+
image_placeholder.image(processed_image, caption='Uploaded Image', use_container_width=True)
|
375 |
|
376 |
# Analyze image with progress bar
|
377 |
progress_bar = st.progress(0)
|