From 84902e0e522309f238ba6f44e7d4e216e7aeab88 Mon Sep 17 00:00:00 2001 From: Gautham Krishnan Date: Wed, 20 Aug 2025 15:24:32 +0530 Subject: [PATCH] fix: HistogramNormalized doc Signed-off-by: Gautham Krishnan --- monai/transforms/intensity/dictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monai/transforms/intensity/dictionary.py b/monai/transforms/intensity/dictionary.py index f2b1a2fd40..3d29b3031d 100644 --- a/monai/transforms/intensity/dictionary.py +++ b/monai/transforms/intensity/dictionary.py @@ -1836,7 +1836,7 @@ class HistogramNormalized(MapTransform): See also: :py:class:`monai.transforms.compose.MapTransform` num_bins: number of the bins to use in histogram, default to `256`. for more details: https://numpy.org/doc/stable/reference/generated/numpy.histogram.html. - min: the min value to normalize input image, default to `255`. + min: the min value to normalize input image, default to `0`. max: the max value to normalize input image, default to `255`. mask: if provided, must be ndarray of bools or 0s and 1s, and same shape as `image`. only points at which `mask==True` are used for the equalization.