anh1811 commited on
Commit
eb1abd7
·
1 Parent(s): bf1fde7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -390,13 +390,13 @@ if uploaded_file is not None:
390
  image_3 = cv2.cvtColor(image_3, cv2.COLOR_BGR2RGB)
391
  col1, col2, col3, col4 = st.columns(4)
392
  with col1:
393
- st.image(image, caption="Ảnh đầu vào", use_column_width=True)
394
  with col2:
395
- st.image(image_1, caption="Kết quả task 1", channels="BGR", use_column_width=True)
396
  with col3:
397
- st.image(image_2, caption="Kết quả task 2 (no finetune)", channels="BGR", use_column_width=True)
398
  with col4:
399
- st.image(image_3, caption="Kết quả task 2 (finetune)", channels="BGR", use_column_width=True)
400
 
401
 
402
  # import cv2
 
390
  image_3 = cv2.cvtColor(image_3, cv2.COLOR_BGR2RGB)
391
  col1, col2, col3, col4 = st.columns(4)
392
  with col1:
393
+ st.image(image, caption="Ảnh đầu vào")
394
  with col2:
395
+ st.image(image_1, caption="Kết quả task 1", channels="BGR")
396
  with col3:
397
+ st.image(image_2, caption="Kết quả task 2 (no finetune)", channels="BGR")
398
  with col4:
399
+ st.image(image_3, caption="Kết quả task 2 (finetune)", channels="BGR")
400
 
401
 
402
  # import cv2