Update app.py
Browse files
app.py
CHANGED
@@ -116,16 +116,21 @@ def main():
|
|
116 |
img = img.save("img.png")
|
117 |
img = cv2.imread("img.png")
|
118 |
#text = pytesseract.image_to_string(img) if st.checkbox("Bangla") else pytesseract.image_to_string(img, lang="ben")
|
119 |
-
if st.checkbox("Bangla"):
|
120 |
text = pytesseract.image_to_string(img, lang="ben")
|
121 |
-
|
122 |
text=pytesseract.image_to_string(img)
|
123 |
#st.success(text)
|
124 |
elif uploaded_photo==None and camera_photo==None:
|
125 |
text = message
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
if st.checkbox("English Text Generation"):
|
128 |
-
|
129 |
def query(payload):
|
130 |
response = requests.post(API_URL2, headers=headers2, json=payload)
|
131 |
return response.json()
|
@@ -136,11 +141,5 @@ def main():
|
|
136 |
if isinstance(out, list) and out[0].get("generated_text"):
|
137 |
text_output = out[0]["generated_text"]
|
138 |
st.success(text_output)
|
139 |
-
|
140 |
-
if st.checkbox("Mark for Text Summarization"):
|
141 |
-
if st.checkbox("Bangla"):
|
142 |
-
bansum(text)
|
143 |
-
else:
|
144 |
-
engsum(text)
|
145 |
if __name__ == '__main__':
|
146 |
main()
|
|
|
116 |
img = img.save("img.png")
|
117 |
img = cv2.imread("img.png")
|
118 |
#text = pytesseract.image_to_string(img) if st.checkbox("Bangla") else pytesseract.image_to_string(img, lang="ben")
|
119 |
+
if st.checkbox("Content Type: Bangla"):
|
120 |
text = pytesseract.image_to_string(img, lang="ben")
|
121 |
+
if st.checkbox("Content Type: English"):
|
122 |
text=pytesseract.image_to_string(img)
|
123 |
#st.success(text)
|
124 |
elif uploaded_photo==None and camera_photo==None:
|
125 |
text = message
|
126 |
+
|
127 |
+
if st.checkbox("Mark for Text Summarization"):
|
128 |
+
if st.checkbox("Summarize Bangla Texts"):
|
129 |
+
bansum(text)
|
130 |
+
if st.checkbox("Summarize English Texts"):
|
131 |
+
engsum(text)
|
132 |
+
|
133 |
if st.checkbox("English Text Generation"):
|
|
|
134 |
def query(payload):
|
135 |
response = requests.post(API_URL2, headers=headers2, json=payload)
|
136 |
return response.json()
|
|
|
141 |
if isinstance(out, list) and out[0].get("generated_text"):
|
142 |
text_output = out[0]["generated_text"]
|
143 |
st.success(text_output)
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
if __name__ == '__main__':
|
145 |
main()
|