Spaces:
Running
Running
File size: 295 Bytes
9bf4bd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright (c) OpenMMLab. All rights reserved.
from mmengine.model import BaseModule
from mmocr.registry import MODELS
@MODELS.register_module()
class BasePreprocessor(BaseModule):
"""Base Preprocessor class for text recognition."""
def forward(self, x, **kwargs):
return x
|