mirror of
https://github.com/open-mmlab/mmocr.git
synced 2025-06-03 21:54:47 +08:00
9 lines
233 B
Python
9 lines
233 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
from mmocr.registry import MODELS
|
||
|
from .encoder_decoder_text_spotter import EncoderDecoderTextSpotter
|
||
|
|
||
|
|
||
|
@MODELS.register_module()
|
||
|
class SPTS(EncoderDecoderTextSpotter):
|
||
|
"""SPTS."""
|