Soumen commited on
Commit
4c8e372
·
1 Parent(s): 55ef2c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -13
app.py CHANGED
@@ -130,19 +130,9 @@ def main():
130
  #image_result.write(file)
131
  tet = read_pdf(uploaded_photo)
132
  #tet = pytesseract.image_to_string(img, lang="ben") if st.checkbox("Mark to see Bangla Image's Text") else pytesseract.image_to_string(img)
133
- values = st.slider('Select a approximate number of words to view and summarize', 0, 500,1000)
134
- tl = len(tet)
135
- i=0
136
- j=0
137
- if values:
138
- if st.button("See_Next"):
139
- while(i<=tl//(values*5)):
140
- i=j
141
- text = tet[i*(values*5):] if i==tl//(values*5) else tet[i*(values*5):(i+1)*(values*5)]
142
- st.success(text)
143
- i+=1
144
- j=i
145
- break
146
 
147
  elif uploaded_photo.type != "application/image":
148
  img = Image.open(uploaded_photo)
 
130
  #image_result.write(file)
131
  tet = read_pdf(uploaded_photo)
132
  #tet = pytesseract.image_to_string(img, lang="ben") if st.checkbox("Mark to see Bangla Image's Text") else pytesseract.image_to_string(img)
133
+ values = st.slider('Select a approximate number of words to view and summarize',value=[0, len(tet)//(4*7)])
134
+ text = tet[values[0]*4*7:values[1]*4*7] if values[0]!=len(tet)//(4*7) else tet[len(tet)//(4*7):]
135
+ st.success(text)
 
 
 
 
 
 
 
 
 
 
136
 
137
  elif uploaded_photo.type != "application/image":
138
  img = Image.open(uploaded_photo)