ocrlatex / app.py
seawolf2357's picture
Update app.py
6b7accd verified
raw
history blame
2.08 kB
import gradio as gr
import requests
import json
import base64
from PIL import Image
import io
import os
css = """
footer {
visibility: hidden;
}
"""
app_id = os.getenv("app_id")
app_key = os.getenv("app_key")
app_url = os.getenv("app_url")
def get_latex_from_image_all_formats(image):
buffered = io.BytesIO()
image.save(buffered, format="JPEG")
image_base64 = base64.b64encode(buffered.getvalue()).decode('utf-8')
headers = {
"app_id": app_id,
"app_key": app_key,
"Content-Type": "application/json"
}
# ํ•ด๋‹น ๋ถ€๋ถ„์„ ["text"]๋กœ ๋ณ€๊ฒฝํ•˜์—ฌ formats๋ฅผ ๋ฆฌ์ŠคํŠธ๋กœ ์„ค์ •
data = {
"src": f"data:image/jpeg;base64,{image_base64}",
"formats": ["text"]
}
response = requests.post(app_url, headers=headers, json=data)
response.raise_for_status()
result = response.json()
# formats_results ๋ณ€์ˆ˜๋Š” ์‚ฌ์šฉํ•˜์ง€ ์•Š์œผ๋ฏ€๋กœ ์ œ๊ฑฐํ•˜์—ฌ ์ฝ”๋“œ๋ฅผ ๋‹จ์ˆœํ™”
return result
def build_gradio_app(css=css):
with gr.Blocks(css=css) as demo:
gr.Markdown("# ArXivGPT LaTeX Tool")
gr.Markdown("This comprehensive solution encompasses an automated workflow...")
image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
outputs = gr.Textbox(label="๊ฒฐ๊ณผ")
def process_and_output(image):
latex_result = get_latex_from_image_all_formats(image)
text_result = latex_result.get("text", "No result")
return text_result
# Examples ์ •์˜๋ฅผ process_and_output ํ•จ์ˆ˜ ์ •์˜ ํ›„๋กœ ์˜ฎ๊น๋‹ˆ๋‹ค.
examples = gr.Examples(examples=[["ko.png"], ["en.png"], ["hand.jpg"]], inputs=image_input, outputs=outputs, fn=process_and_output)
submit_button.click(fn=process_and_output, inputs=image_input, outputs=outputs)
demo.add(examples) # gr.Blocks์— examples ์ปดํฌ๋„ŒํŠธ๋ฅผ ์ถ”๊ฐ€ํ•ฉ๋‹ˆ๋‹ค.
return demo
if __name__ == "__main__":
app = build_gradio_app()
app.launch()