Metadata-Version: 2.1
Name: keras-ocr
Version: 0.4.2
Summary: A packaged and flexible version of the CRAFT text detector and Keras CRNN recognition model.
Home-page: https://github.com/faustomorales/keras-ocr
Author: Fausto Morales
Author-email: faustomorales@gmail.com
License: UNKNOWN
Description: # keras-ocr
        This is a slightly polished and packaged version of the [Keras CRNN implementation](https://github.com/kurapan/CRNN) and the published [CRAFT text detection model](https://github.com/clovaai/CRAFT-pytorch). It provides a high level API for training a text detection and OCR pipeline.
        
        Please see [the documentation](https://keras-ocr.readthedocs.io/) for more examples, including for training a custom model.
        
        ## Getting Started
        
        ### Installation
        ```bash
        # To install from master
        pip install git+https://github.com/faustomorales/keras-ocr.git#egg=keras-ocr
        
        # To install from PyPi
        pip install keras-ocr
        ```
        
        ### Using
        
        #### Using pretrained text detection and recognition models
        The package ships with an easy-to-use implementation of the CRAFT text detection model from [this repository](https://github.com/clovaai/CRAFT-pytorch) and the CRNN recognition model from [this repository](https://github.com/kurapan/CRNN).
        
        ```python
        import keras_ocr
        
        # keras-ocr will automatically download pretrained
        # weights for the detector and recognizer.
        pipeline = keras_ocr.pipeline.Pipeline()
        
        # Predictions is a list of (string, box) tuples.
        predictions = pipeline.recognize(image='tests/test_image.jpg')
        ```
        
        ![example of labeled image](https://raw.githubusercontent.com/faustomorales/keras-ocr/master/tests/test_image_labeled.jpg)
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
