mmsegmentation/mmseg/structures/sampler/__init__.py

7 lines
262 B
Python
Raw Normal View History

# Copyright (c) OpenMMLab. All rights reserved.
2022-07-15 23:47:29 +08:00
from .base_pixel_sampler import BasePixelSampler
2020-07-07 20:52:19 +08:00
from .builder import build_pixel_sampler
2022-07-15 23:47:29 +08:00
from .ohem_pixel_sampler import OHEMPixelSampler
2020-07-07 20:52:19 +08:00
__all__ = ['build_pixel_sampler', 'BasePixelSampler', 'OHEMPixelSampler']