RSPrompter / mmdet /apis /__init__.py
KyanChen's picture
Upload 787 files
3e06e1c
raw
history blame
305 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from .det_inferencer import DetInferencer
from .inference import (async_inference_detector, inference_detector,
init_detector)
__all__ = [
'init_detector', 'async_inference_detector', 'inference_detector',
'DetInferencer'
]