Update app.py
Browse files
app.py
CHANGED
@@ -158,7 +158,7 @@ if st.session_state['step'] == 1:
|
|
158 |
|
159 |
# Immagine con didascalia migliorata e con dimensione della caption aumentata
|
160 |
image_path = "./DEMO/Loghi/model_final.png" # Sostituisci con il percorso della tua immagine
|
161 |
-
st.image(image_path, caption='',
|
162 |
|
163 |
# Caption con dimensione del testo migliorata
|
164 |
st.markdown("""
|
@@ -297,7 +297,7 @@ if st.session_state['step'] == 3:
|
|
297 |
frontal2 = Image.fromarray(frontal2)
|
298 |
st.write("Frontal Image loaded successfully!")
|
299 |
# Mostra l'immagine caricata
|
300 |
-
st.image(frontal2, caption="Frontal Image Loaded",
|
301 |
if st.session_state['lateral_file']:
|
302 |
dicom = pydicom.dcmread(st.session_state['lateral_file'])
|
303 |
image = dicom.pixel_array
|
@@ -324,7 +324,7 @@ if st.session_state['step'] == 3:
|
|
324 |
lateral = torch.tensor(lateral, dtype=torch.float32).unsqueeze(0).unsqueeze(0)
|
325 |
lateral2 = Image.Frontalmarray(lateral2)
|
326 |
st.write("Lateral Image loaded successfully!")
|
327 |
-
st.image(lateral2, caption="Lateral Image Loaded",
|
328 |
if st.session_state['report']:
|
329 |
report = st.session_state['report']
|
330 |
st.write(f"Loaded Report: {report}")
|
|
|
158 |
|
159 |
# Immagine con didascalia migliorata e con dimensione della caption aumentata
|
160 |
image_path = "./DEMO/Loghi/model_final.png" # Sostituisci con il percorso della tua immagine
|
161 |
+
st.image(image_path, caption='', use_container_width=True)
|
162 |
|
163 |
# Caption con dimensione del testo migliorata
|
164 |
st.markdown("""
|
|
|
297 |
frontal2 = Image.fromarray(frontal2)
|
298 |
st.write("Frontal Image loaded successfully!")
|
299 |
# Mostra l'immagine caricata
|
300 |
+
st.image(frontal2, caption="Frontal Image Loaded", use_container_width=True)
|
301 |
if st.session_state['lateral_file']:
|
302 |
dicom = pydicom.dcmread(st.session_state['lateral_file'])
|
303 |
image = dicom.pixel_array
|
|
|
324 |
lateral = torch.tensor(lateral, dtype=torch.float32).unsqueeze(0).unsqueeze(0)
|
325 |
lateral2 = Image.Frontalmarray(lateral2)
|
326 |
st.write("Lateral Image loaded successfully!")
|
327 |
+
st.image(lateral2, caption="Lateral Image Loaded", use_container_width=True)
|
328 |
if st.session_state['report']:
|
329 |
report = st.session_state['report']
|
330 |
st.write(f"Loaded Report: {report}")
|