Spaces:
Runtime error
Runtime error
| # Copyright (c) OpenMMLab. All rights reserved. | |
| from mmocr.models.builder import DETECTORS | |
| from .single_stage_text_detector import SingleStageTextDetector | |
| from .text_detector_mixin import TextDetectorMixin | |
| class PANet(TextDetectorMixin, SingleStageTextDetector): | |
| """The class for implementing PANet text detector: | |
| Efficient and Accurate Arbitrary-Shaped Text Detection with Pixel | |
| Aggregation Network [https://arxiv.org/abs/1908.05900]. | |
| """ | |
| def __init__(self, | |
| backbone, | |
| neck, | |
| bbox_head, | |
| train_cfg=None, | |
| test_cfg=None, | |
| pretrained=None, | |
| show_score=False, | |
| init_cfg=None): | |
| SingleStageTextDetector.__init__(self, backbone, neck, bbox_head, | |
| train_cfg, test_cfg, pretrained, | |
| init_cfg) | |
| TextDetectorMixin.__init__(self, show_score) | |