AItool commited on
Commit
768f25e
·
verified ·
1 Parent(s): 3975cc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ with tab1:
44
  if st.button('OCR Demo'):
45
  response = requests.get(url)
46
  img = Image.open(BytesIO(response.content))
47
- st.image(input_image) #display image
48
  img.load()
49
  st.image(img) #display image
50
 
 
44
  if st.button('OCR Demo'):
45
  response = requests.get(url)
46
  img = Image.open(BytesIO(response.content))
47
+ st.image(img) #display image
48
  img.load()
49
  st.image(img) #display image
50