yhq 26cd12ab42
[features] Support stdc (#284)
* add stdc semantic segmentation algorithm
2023-02-16 14:00:59 +08:00

6 lines
214 B
Python

from .base_pixel_sampler import BasePixelSampler
from .builder import build_pixel_sampler
from .ohem_pixel_sampler import OHEMPixelSampler
__all__ = ['BasePixelSampler', 'OHEMPixelSampler', 'build_pixel_sampler']