Metadata-Version: 2.1
Name: simpleocr
Version: 0.0.5
Summary: A ocr tool for traditional chinese
Home-page: https://github.com/xianyuntang/simpleocr
Author: xt1800i
Author-email: xt1800i@gmail.com
License: UNKNOWN
Description: # simple-ocr library
        simpleocr is a python OCR package for traditional chinese based on deep learning method.
        
        The library consists of text localization and text recognition.
        
        ## text localization
        The model is the reimplementation of CRAFT(Character-Region Awareness For Text detection) by tensorflow.
        
        [paper](https://arxiv.org/abs/1904.01941) | [github](https://github.com/clovaai/CRAFT-pytorch)
         
        ## text recognition
        The reimplementation is based on CRNN model which RNN layer is replaced with self-attention layer.
        
        ##### CRNN
        [paper](https://arxiv.org/abs/1707.03985)
        
        ##### self attention
        
        [paper](https://arxiv.org/abs/1706.03762)
        
        # installation
        ```
        $ pip install simpleocr
        ```
        
        # usage
        ```
        from simpleocr import simpleocr
        simpleocr.get_text(['image.jpg'])
        ```
        
        
        
        # TODO
        1. English support
        2. GPU support
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
