__init__.py 275 Bytes
Newer Older
1
2
from .inference import (convert_SyncBN, inference_detector, init_detector,
                        show_result_meshlab)
liyinhao's avatar
liyinhao committed
3
4
from .test import single_gpu_test

wuyuefeng's avatar
Demo  
wuyuefeng committed
5
6
__all__ = [
    'inference_detector', 'init_detector', 'single_gpu_test',
7
    'show_result_meshlab', 'convert_SyncBN'
wuyuefeng's avatar
Demo  
wuyuefeng committed
8
]