Source code for mmocr.models.textdet.dense_heads.pse_head

from mmdet.models.builder import HEADS
from . import PANHead


[docs]@HEADS.register_module() class PSEHead(PANHead): """The class for PANet head.""" def __init__( self, in_channels, out_channels, text_repr_type='poly', # 'poly' or 'quad' downsample_ratio=0.25, loss=dict(type='PSELoss'), train_cfg=None, test_cfg=None): super().__init__( in_channels=in_channels, out_channels=out_channels, text_repr_type=text_repr_type, downsample_ratio=downsample_ratio, loss=loss, train_cfg=train_cfg, test_cfg=test_cfg)