Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,7 @@ st.title("🦠 Brain Tumor Prediction App from MRI Images")
|
|
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
-
col1, col2 = st.columns([6,
|
| 46 |
|
| 47 |
with col1:
|
| 48 |
|
|
@@ -57,7 +57,7 @@ with col1:
|
|
| 57 |
st.write(file_details)
|
| 58 |
|
| 59 |
#View Uploaded Image
|
| 60 |
-
st.image(load_image(image),width=
|
| 61 |
#save image to disk
|
| 62 |
saved = save_uploadedfile(image)
|
| 63 |
|
|
|
|
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
+
col1, spacer, col2 = st.columns([6,1,3], gap="medium")
|
| 46 |
|
| 47 |
with col1:
|
| 48 |
|
|
|
|
| 57 |
st.write(file_details)
|
| 58 |
|
| 59 |
#View Uploaded Image
|
| 60 |
+
st.image(load_image(image),width=200)
|
| 61 |
#save image to disk
|
| 62 |
saved = save_uploadedfile(image)
|
| 63 |
|