-
Hi guys! Why is ScaleIntensityRange clip performed after MinMax normalization? Is that correct? Does it follow the original implementation of windowing technique? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
KumoLiu
Nov 14, 2024
Replies: 1 comment 2 replies
-
Hi @emi-dm, thanks for your interest here.
Hope it helps, thanks. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
emi-dm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @emi-dm, thanks for your interest here.
The clip here is used to ensure that the output values of the normalization process stay within the specified output range [b_min, b_max].
So the clip argument acts as a safeguard to…