adrianpierce commited on
Commit
3024c56
·
1 Parent(s): 2575900

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ uploaded_file = st.file_uploader("Choose a file")
7
  if uploaded_file is not None:
8
 
9
 
10
- image = Image.open(uploaded_file)
11
- st.image(image, caption='Sunrise by the mountains')
12
  extractedInformation = pytesseract.image_to_string(image)
13
  st.write(extractedInformation)
14
 
 
7
  if uploaded_file is not None:
8
 
9
 
10
+ #image = Image.open(uploaded_file)
11
+ #st.image(image, caption='Sunrise by the mountains')
12
  extractedInformation = pytesseract.image_to_string(image)
13
  st.write(extractedInformation)
14