# ------------------------------------------------------------------------- # Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # NVIDIA CORPORATION & AFFILIATES and its licensors retain all intellectual # property and proprietary rights in and to this software, related # documentation and any modifications thereto. Any use, reproduction, # disclosure or distribution of this software and related documentation # without an express license agreement from NVIDIA CORPORATION is strictly # prohibited. # # Written by Jiarui Xu # ------------------------------------------------------------------------- # Modified by Jilan Xu # ------------------------------------------------------------------------- from .builder import build_seg_dataloader, build_seg_dataset, build_seg_demo_pipeline, build_seg_inference from .group_vit_seg import GROUP_PALETTE, GroupViTSegInference __all__ = [ 'GroupViTSegInference', 'build_seg_dataset', 'build_seg_dataloader', 'build_seg_inference', 'build_seg_demo_pipeline', 'GROUP_PALETTE' ]