__init__.py 442 B

123456789101112131415
  1. # Copyright (c) Meta Platforms, Inc. and affiliates.
  2. # All rights reserved.
  3. # This source code is licensed under the license found in the
  4. # LICENSE file in the root directory of this source tree.
  5. from .build_sam import (
  6. build_sam,
  7. build_sam_vit_h,
  8. build_sam_vit_l,
  9. build_sam_vit_b,
  10. sam_model_registry,
  11. )
  12. from .predictor import SamPredictor
  13. from .automatic_mask_generator import SamAutomaticMaskGenerator