Spaces:
Sleeping
Sleeping
Commit ·
20c42f1
1
Parent(s): 3bab7f4
style: change uploaded image size
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -80,7 +80,7 @@ uploaded_file = st.file_uploader("Langkah 1: Unggah Gambar Daun", type=["jpg", "
|
|
| 80 |
|
| 81 |
if uploaded_file is not None:
|
| 82 |
image = Image.open(uploaded_file)
|
| 83 |
-
st.image(image, caption="Gambar yang Diunggah",
|
| 84 |
|
| 85 |
if st.button("Analisis Penyakit", type="primary"):
|
| 86 |
if model:
|
|
|
|
| 80 |
|
| 81 |
if uploaded_file is not None:
|
| 82 |
image = Image.open(uploaded_file)
|
| 83 |
+
st.image(image, caption="Gambar yang Diunggah", width=300)
|
| 84 |
|
| 85 |
if st.button("Analisis Penyakit", type="primary"):
|
| 86 |
if model:
|