seawolf2357 commited on
Commit
58a27cd
ยท
verified ยท
1 Parent(s): 65abef3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -35,24 +35,25 @@ def get_latex_from_image_all_formats(image):
35
 
36
  return formats_results
37
 
38
- # Gradio ์•ฑ ์ •์˜
39
  def build_gradio_app():
40
- with gr.Blocks() as app:
41
  with gr.Row():
42
  image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
43
  submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
44
-
45
  outputs = [gr.Textbox(label=f"{f} ๊ฒฐ๊ณผ") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
46
 
 
 
47
  def process_and_output(image):
48
- results = get_latex_from_image_all_formats(image)
49
- return [results.get(f) for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
50
 
51
  submit_button.click(fn=process_and_output, inputs=image_input, outputs=outputs)
52
 
53
- return app
54
 
55
- # Gradio ์•ฑ ์‹คํ–‰
56
  if __name__ == "__main__":
57
  app = build_gradio_app()
58
- app.launch()
 
35
 
36
  return formats_results
37
 
38
+
39
  def build_gradio_app():
40
+ with gr.Blocks() as demo:
41
  with gr.Row():
42
  image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
43
  submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
44
+
45
  outputs = [gr.Textbox(label=f"{f} ๊ฒฐ๊ณผ") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
46
 
47
+ latex_iframe = gr.HTML(value='<iframe src="https://latex.js.org/playground.html" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
48
+
49
  def process_and_output(image):
50
+ latex_result = get_latex_from_image_all_formats(image) # ๋ณ€์ˆ˜๋ช… ์ˆ˜์ •
51
+ return [latex_result.get(f) for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]] # ์ˆ˜์ •๋œ ๋ถ€๋ถ„
52
 
53
  submit_button.click(fn=process_and_output, inputs=image_input, outputs=outputs)
54
 
55
+ return demo
56
 
 
57
  if __name__ == "__main__":
58
  app = build_gradio_app()
59
+ app.launch()