Metadata-Version: 2.1
Name: simpleocr
Version: 0.0.22
Summary: A ocr tool for traditional chinese
Home-page: https://github.com/xianyuntang/simpleocr
Author: xt1800i
Author-email: xt1800i@gmail.com
License: UNKNOWN
Description: # Simpleocr library
        Simpleocr is a traditional chinese OCR python package that based on deep learning method.
        
        The library consists of text localization and text recognition.
        
        ## Text localization
        The model is a 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 that 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
        ```
        or 
        ```
        $ git clone https://github.com/xianyuntang/simpleocr
        $ cd simpleocr
        $ python setup.py install
        ```
        # Usage
        ```
        from simpleocr import ocr
        ocr.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
