diff --git a/monai/transforms/utility/array.py b/monai/transforms/utility/array.py index 84422a9ee5..2963c8a2f8 100644 --- a/monai/transforms/utility/array.py +++ b/monai/transforms/utility/array.py @@ -1054,12 +1054,11 @@ def __call__( class ConvertToMultiChannelBasedOnBratsClasses(Transform): """ - Convert labels to multi channels based on brats18 classes: - label 1 is the necrotic and non-enhancing tumor core - label 2 is the peritumoral edema - label 4 is the GD-enhancing tumor - The possible classes are TC (Tumor core), WT (Whole tumor) - and ET (Enhancing tumor). + Convert labels to multi channels based on `brats18 `_ classes, + which include TC (Tumor core), WT (Whole tumor) and ET (Enhancing tumor): + label 1 is the necrotic and non-enhancing tumor core, which should be counted under TC and WT subregion, + label 2 is the peritumoral edema, which is counted only under WT subregion, + label 4 is the GD-enhancing tumor, which should be counted under ET, TC, WT subregions. """ backend = [TransformBackends.TORCH, TransformBackends.NUMPY]