Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,31 +1,36 @@
|
|
1 |
-
import gradio as gr
|
2 |
import requests
|
|
|
3 |
import base64
|
4 |
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
# Mathpix
|
7 |
-
def process_image_to_latex(file_path):
|
8 |
headers = {
|
9 |
-
"app_id": "arxivgpt_2c0986",
|
10 |
-
"app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
|
11 |
-
"Content-
|
12 |
}
|
13 |
-
with open(file_path, "rb") as file:
|
14 |
-
img_data = file.read()
|
15 |
-
response = requests.post(
|
16 |
-
"https://api.mathpix.com/v3/latex",
|
17 |
-
headers=headers,
|
18 |
-
json={"src": "data:image/jpeg;base64," + base64.b64encode(img_data).decode()}
|
19 |
-
)
|
20 |
-
return response.json()["latex"]
|
21 |
|
22 |
-
#
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
1 |
import requests
|
2 |
+
import json
|
3 |
import base64
|
4 |
|
5 |
+
# Mathpix์ ์ด๋ฏธ์ง ํ์ผ์ ๋ณด๋ด์ด LaTeX ๋ฌธ์์ด์ ์ถ์ถํ๋ ํจ์
|
6 |
+
def get_latex_from_image(image_path):
|
7 |
+
# ์ด๋ฏธ์ง ํ์ผ์ base64 ์ธ์ฝ๋ฉ
|
8 |
+
with open(image_path, "rb") as f:
|
9 |
+
image_base64 = base64.b64encode(f.read()).decode()
|
10 |
|
11 |
+
# Mathpix API ์์ฒญ ํค๋
|
|
|
12 |
headers = {
|
13 |
+
"app_id": "arxivgpt_2c0986", # ์ฌ๊ธฐ์ Mathpix ID๋ฅผ ์
๋ ฅ
|
14 |
+
"app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5", # ์ฌ๊ธฐ์ Mathpix API ํค๋ฅผ ์
๋ ฅ
|
15 |
+
"Content-Type": "application/json"
|
16 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
# Mathpix API ์์ฒญ ๋ฐ๋
|
19 |
+
data = {
|
20 |
+
"src": "data:image/png;base64," + image_base64,
|
21 |
+
"formats": ["latex_normal"]
|
22 |
+
}
|
23 |
+
|
24 |
+
# Mathpix API ์์ฒญ ๋ณด๋ด๊ธฐ
|
25 |
+
response = requests.post("https://api.mathpix.com/v3/latex", headers=headers, data=json.dumps(data))
|
26 |
+
response.raise_for_status() # ์์ฒญ ์คํจ ์ ์์ธ ๋ฐ์
|
27 |
+
|
28 |
+
# ์๋ต์์ LaTeX ์ถ์ถ
|
29 |
+
result = response.json()
|
30 |
+
latex = result['latex_normal']
|
31 |
+
|
32 |
+
return latex
|
33 |
|
34 |
+
# ์ถ์ถํ LaTeX ์ถ๋ ฅ
|
35 |
+
latex_string = get_latex_from_image("path/to/image.png")
|
36 |
+
print(latex_string)
|