Spaces:
Running
on
Zero
Running
on
Zero
| # Copyright (c) Meta Platforms, Inc. and affiliates. | |
| # All rights reserved. | |
| # | |
| # This source code is licensed under the license found in the | |
| # LICENSE file in the root directory of this source tree. | |
| from .camera import SimpleCamera, SimpleCameraTorch | |
| from .collect_env import collect_env | |
| from .config_utils import adapt_mmdet_pipeline | |
| from .logger import get_root_logger | |
| from .setup_env import register_all_modules, setup_multi_processes | |
| from .timer import StopWatch | |
| __all__ = [ | |
| 'get_root_logger', 'collect_env', 'StopWatch', 'setup_multi_processes', | |
| 'register_all_modules', 'SimpleCamera', 'SimpleCameraTorch', | |
| 'adapt_mmdet_pipeline' | |
| ] | |