Spaces:
Running
Running
File size: 380 Bytes
9bf4bd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright (c) OpenMMLab. All rights reserved.
from mmocr.registry import MODELS
from .encoder_decoder_recognizer import EncoderDecoderRecognizer
@MODELS.register_module()
class ASTER(EncoderDecoderRecognizer):
"""Implement `ASTER: An Attentional Scene Text Recognizer with Flexible
Rectification.
<https://ieeexplore.ieee.org/abstract/document/8395027/`
"""
|