Daniel Cerda Escobar commited on
Commit
cc0e43c
·
1 Parent(s): a5158fe

Upgrade app

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -143,16 +143,16 @@ if submit:
143
 
144
  st.write('##')
145
 
146
- col1, col2, col3 = st.columns([1, 5, 1])
147
  with col2:
148
  st.markdown(f"#### Object Detection Result")
149
- with st.container(border = True):
150
  static_component = image_comparison(
151
  img1=st.session_state["output_1"],
152
  img2=st.session_state["output_2"],
153
  label1='Raw Diagram',
154
  label2='Inference Prediction',
155
- width=1024,
156
  starting_position=50,
157
  show_labels=True,
158
  make_responsive=True,
 
143
 
144
  st.write('##')
145
 
146
+ col1, col2, col3 = st.columns([1, 3, 1])
147
  with col2:
148
  st.markdown(f"#### Object Detection Result")
149
+ with st.container(height=800,border = True):
150
  static_component = image_comparison(
151
  img1=st.session_state["output_1"],
152
  img2=st.session_state["output_2"],
153
  label1='Raw Diagram',
154
  label2='Inference Prediction',
155
+ width=768,
156
  starting_position=50,
157
  show_labels=True,
158
  make_responsive=True,