File size: 1,475 Bytes
30c8b41
 
58c6ff9
30c8b41
 
0477fd5
30c8b41
7c8b66e
 
3cf3bc0
1454a03
30c8b41
 
 
 
 
 
8ee5136
30c8b41
 
 
 
 
 
1b2702a
 
adb8527
f9ea588
30c8b41
 
 
3afd6a5
 
30c8b41
f832e92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import gradio as gr
import subprocess
import torch
import directories as Dir
import process as ps
from urllib.parse import urlparse

gitblog = "https://bandalcom.github.io/"
github = "https://github.com/bandalcom/Postech-KITA_AI-Project"

#torch.hub.download_url_to_file('https://huggingface.co/spaces/Nebulae000/NoteCrawling/blob/main/noteimg2.jpg', 'noteimg2.jpg')

def HCR(im):
    ps.textDetection(im)
    ps.textRearrange()
    ps.textRecognition()
    hcr = ps.getHcrResult(Dir.txt_file_path)
    #subprocess.call('cd'+ Dir.yolo_dir, shell=True)
    #clearDir()

    return hcr

title = "HCR"
description = "[Postech X KITA] Elite Undergradute AI Strategy Program | AI Project Competition Team 2 OCR Part"
article = "<p style='text-align: center'> Handwritten Text Character Recognition Task" \
          "Text Detection + Text Rearrangement + Text Recognition</p>" \
          #"For More Information\n" \
          #"<a href='"+ "https%3A%2F%2Fbandalcom.github.io%2F" +"'>GitBlog</a> | <a href='"+ "https%3A%2F%2Fbandalcom.github.io%2F" +"'>Source code</a></p>"

#<a href='https://github.com/bandalcom/Postech+KITA_AI-Project'>Source code</a>
#examples = [['zidane.jpg'], ['bus.jpg']]
#noteimg1 = torch.hub.download_url_to_file('https://ibb.co/JyMt31q', 'noteimg1.jpg')
#examples = [[noteimg1]]
#examples=examples,
gr.Interface(fn=HCR, inputs="image", outputs = "text", title=title, description=description, article=article, analytics_enabled=False).launch(debug=True)