File size: 193 Bytes
d7e58f0
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from mmcv.utils import Registry

POST_PROCESSING = Registry('post_processing')


def build_post_processing(cfg):
    """Build post processing function."""
    return POST_PROCESSING.build(cfg)