905saini commited on
Commit
47d42b8
·
1 Parent(s): 794a732

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -20,6 +20,8 @@ file_name = st.file_uploader("Upload a repport image")
20
  if file_name is not None:
21
  col1, col2 = st.columns(2)
22
 
23
- image = Image.open(file_name)
24
- col1.image(image, use_column_width=True)
 
 
25
 
 
20
  if file_name is not None:
21
  col1, col2 = st.columns(2)
22
 
23
+ input_image,copy_image = process_img(file_name)
24
+ col1.image(input_image, use_column_width=True)
25
+
26
+
27