ocrlatex / app.py
seawolf2357's picture
Update app.py
25931ce verified
raw
history blame
2.11 kB
import gradio as gr
import requests
import json
import base64
from PIL import Image
import io
# Mathpix์— ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ ๋ณด๋‚ด์–ด ์—ฌ๋Ÿฌ ํฌ๋งท์˜ LaTeX ๋ฌธ์ž์—ด์„ ์ถ”์ถœํ•˜๋Š” ํ•จ์ˆ˜
def get_latex_from_image_all_formats(image):
# PIL ์ด๋ฏธ์ง€๋ฅผ ๋ฐ”์ดํŠธ๋กœ ๋ณ€ํ™˜
buffered = io.BytesIO()
image.save(buffered, format="JPEG")
image_base64 = base64.b64encode(buffered.getvalue()).decode('utf-8')
# Mathpix API ์š”์ฒญ ํ—ค๋”
headers = {
"app_id": "arxivgpt_2c0986",
"app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
"Content-Type": "application/json"
}
# Mathpix API ์š”์ฒญ ๋ฐ”๋””
data = {
"src": f"data:image/jpeg;base64,{image_base64}",
"formats": ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]
}
# Mathpix API ์š”์ฒญ ๋ณด๋‚ด๊ธฐ
response = requests.post("https://api.mathpix.com/v3/latex", headers=headers, json=data)
response.raise_for_status() # ์š”์ฒญ ์‹คํŒจ ์‹œ ์˜ˆ์™ธ ๋ฐœ์ƒ
# ์‘๋‹ต์—์„œ ๊ฐ ํฌ๋งท์˜ LaTeX ์ถ”์ถœ
result = response.json()
formats_results = {f: result.get(f, f"{f} ์ถ”์ถœ ์‹คํŒจ") for f in data["formats"]}
return formats_results
# Gradio ์•ฑ ์ •์˜
def build_gradio_app():
with gr.Blocks() as app:
with gr.Row():
image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
outputs = [gr.Textbox(label=f"{f} ๊ฒฐ๊ณผ") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
def process_and_output(image):
results = get_latex_from_image_all_formats(image)
return [results.get(f) for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
submit_button.click(fn=process_and_output, inputs=image_input, outputs=outputs)
return app
# Gradio ์•ฑ ์‹คํ–‰
if __name__ == "__main__":
app = build_gradio_app()
app.launch()