Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -6,63 +6,86 @@ from PIL import Image
|
|
6 |
import io
|
7 |
import os
|
8 |
|
|
|
9 |
css = """
|
10 |
footer {
|
11 |
visibility: hidden;
|
12 |
}
|
13 |
-
"""
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
36 |
|
37 |
-
|
38 |
-
|
|
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
|
45 |
def build_gradio_app(css=css):
|
46 |
with gr.Blocks(css=css) as demo:
|
47 |
-
gr.Markdown("# ArXivGPT OCR LaTeX")
|
48 |
-
gr.Markdown("
|
49 |
|
50 |
-
image_input = gr.Image(type="pil", label="
|
51 |
|
52 |
def process_and_output(image):
|
53 |
-
# 이미지 처리 및 결과 반환 로직
|
54 |
latex_result = get_latex_from_image_all_formats(image)
|
55 |
text_result = latex_result.get("text", "No result")
|
56 |
return text_result
|
57 |
|
58 |
-
submit_button = gr.Button("
|
59 |
-
outputs = gr.Textbox(label="
|
60 |
|
61 |
submit_button.click(fn=process_and_output, inputs=[image_input], outputs=[outputs])
|
62 |
|
63 |
-
examples = gr.Examples(
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
-
latex_iframe = gr.HTML(
|
|
|
|
|
|
|
66 |
|
67 |
return demo
|
68 |
|
|
|
6 |
import io
|
7 |
import os
|
8 |
|
9 |
+
# Enhanced 3D style CSS
|
10 |
css = """
|
11 |
footer {
|
12 |
visibility: hidden;
|
13 |
}
|
|
|
14 |
|
15 |
+
.gradio-container {
|
16 |
+
background: linear-gradient(145deg, #f0f0f0, #ffffff);
|
17 |
+
box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
|
18 |
+
border-radius: 15px;
|
19 |
+
}
|
20 |
|
21 |
+
.gr-button {
|
22 |
+
background: linear-gradient(145deg, #007bff, #0056b3);
|
23 |
+
border: none;
|
24 |
+
padding: 12px 24px;
|
25 |
+
border-radius: 10px;
|
26 |
+
color: white;
|
27 |
+
font-weight: bold;
|
28 |
+
box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
|
29 |
+
transition: transform 0.2s;
|
30 |
+
}
|
31 |
|
32 |
+
.gr-button:hover {
|
33 |
+
transform: translateY(-2px);
|
34 |
+
box-shadow: 7px 7px 20px rgba(0,0,0,0.25);
|
35 |
+
}
|
36 |
|
37 |
+
.gr-input, .gr-box {
|
38 |
+
border-radius: 10px;
|
39 |
+
box-shadow: inset 5px 5px 10px #d1d1d1, inset -5px -5px 10px #ffffff;
|
40 |
+
border: 2px solid #e0e0e0;
|
41 |
+
}
|
42 |
|
43 |
+
.gr-form {
|
44 |
+
background: #ffffff;
|
45 |
+
padding: 20px;
|
46 |
+
border-radius: 15px;
|
47 |
+
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
|
48 |
+
}
|
49 |
+
"""
|
50 |
|
51 |
+
app_id = os.getenv("app_id")
|
52 |
+
app_key = os.getenv("app_key")
|
53 |
+
app_url = os.getenv("app_url")
|
54 |
|
55 |
+
# Rest of your functions remain the same
|
56 |
+
def get_latex_from_image_all_formats(image):
|
57 |
+
# Your existing function code...
|
58 |
+
pass
|
59 |
|
60 |
def build_gradio_app(css=css):
|
61 |
with gr.Blocks(css=css) as demo:
|
62 |
+
gr.Markdown("# ArXivGPT OCR LaTeX Converter")
|
63 |
+
gr.Markdown("Upload an image, click 'Convert' button, and copy the output. Paste it in the empty box below and click 'Render HTML'.")
|
64 |
|
65 |
+
image_input = gr.Image(type="pil", label="Upload Image")
|
66 |
|
67 |
def process_and_output(image):
|
|
|
68 |
latex_result = get_latex_from_image_all_formats(image)
|
69 |
text_result = latex_result.get("text", "No result")
|
70 |
return text_result
|
71 |
|
72 |
+
submit_button = gr.Button("Convert", elem_classes="custom-button")
|
73 |
+
outputs = gr.Textbox(label="Output")
|
74 |
|
75 |
submit_button.click(fn=process_and_output, inputs=[image_input], outputs=[outputs])
|
76 |
|
77 |
+
examples = gr.Examples(
|
78 |
+
examples=[["ko.png"], ["en.png"], ["hand.jpg"]],
|
79 |
+
inputs=[image_input],
|
80 |
+
fn=process_and_output,
|
81 |
+
outputs=[outputs],
|
82 |
+
label="Example Images"
|
83 |
+
)
|
84 |
|
85 |
+
latex_iframe = gr.HTML(
|
86 |
+
value='<iframe src="https://mathjax.github.io/MathJax-demos-web/input-tex_mml2chtml.html" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);"></iframe>',
|
87 |
+
elem_id="latex_iframe"
|
88 |
+
)
|
89 |
|
90 |
return demo
|
91 |
|