JaredBailey commited on
Commit
c2ef2ad
·
verified ·
1 Parent(s): ea4358a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -160,7 +160,7 @@ if st.session_state.image is not None:
160
  st.session_state.image_counter += 1
161
 
162
  # Plot predicted image
163
- im_bgr = st.session_state.results[st.session_state.image_counter].plot(line_width=20) # BGR-order numpy array
164
  im_rgb = Image.fromarray(im_bgr[..., ::-1]) # RGB-order PIL image
165
  st.image(im_rgb)
166
 
 
160
  st.session_state.image_counter += 1
161
 
162
  # Plot predicted image
163
+ im_bgr = st.session_state.results[st.session_state.image_counter].plot(line_width=10) # BGR-order numpy array
164
  im_rgb = Image.fromarray(im_bgr[..., ::-1]) # RGB-order PIL image
165
  st.image(im_rgb)
166