diff --git a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h index 150b4166c9043b87bd200e880f8726105a8fdf6e..f7e5aa53b0f7ea7ff03a13479ab594339b81c0b5 100644 --- a/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h +++ b/Modules/Filtering/ImageManipulation/include/otbVectorRescaleIntensityImageFilter.h @@ -198,10 +198,15 @@ private: * * This filter rescales each band to match the [OutputMinimum, OutputMaximum] range. * In order to avoid odd values to alter the intensity extent, one can set a clamp percentage. + * The clamp percentage is set to 0.01 by default. * * Values lower than the first quantile of this percentage are set to the OutputMinimum. * Values upper than the last quantile of this percentage are set to the OutputMaximum. * + * This filter differ from itk::VectorRescaleIntensityImageFilter. + * Instead of setting only the OutputMaximumMagnitude, you can set the minimum and maximum values for the input and output images. + * There is also the possibilty to set a Gamma value and change the clamp percentage. + * * \ingroup IntensityImageFilters * \ingroup MultiThreaded *