mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [WIP] Add BioMedical data loading * add depends nibabel * fix bug * fix ut * fix * add test data * xyz2zyx zyx2xyz * format * remove ignore empty * remove ignore empty * remove with seg in LoadBiomedicalAnnotation * float32 * docstring * toxyz * docstring
17 lines
830 B
Python
17 lines
830 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .formatting import PackSegInputs
|
|
from .loading import (LoadAnnotations, LoadBiomedicalAnnotation,
|
|
LoadBiomedicalData, LoadBiomedicalImageFromFile,
|
|
LoadImageFromNDArray)
|
|
from .transforms import (CLAHE, AdjustGamma, PhotoMetricDistortion, RandomCrop,
|
|
RandomCutOut, RandomMosaic, RandomRotate, Rerange,
|
|
ResizeToMultiple, RGB2Gray, SegRescale)
|
|
|
|
__all__ = [
|
|
'LoadAnnotations', 'RandomCrop', 'SegRescale', 'PhotoMetricDistortion',
|
|
'RandomRotate', 'AdjustGamma', 'CLAHE', 'Rerange', 'RGB2Gray',
|
|
'RandomCutOut', 'RandomMosaic', 'PackSegInputs', 'ResizeToMultiple',
|
|
'LoadImageFromNDArray', 'LoadBiomedicalImageFromFile',
|
|
'LoadBiomedicalAnnotation', 'LoadBiomedicalData'
|
|
]
|