Skip to content
Snippets Groups Projects
Commit 48038c97 authored by Julien Michel's avatar Julien Michel
Browse files

documentation manquante.

parent 303aa7b3
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,9 @@ namespace Functor { ...@@ -30,6 +30,9 @@ namespace Functor {
/** \class VectorAffineTransform /** \class VectorAffineTransform
* \brief This functor performs a per band linear transform of its input. * \brief This functor performs a per band linear transform of its input.
* *
* Values upper than InputMaximum or lower than InputMinimum are clamped to OutputMaximum
* respectively OutputMinimum values.
*
* TInput and TOutput type are supposed to be of type itk::VariableLengthVector. * TInput and TOutput type are supposed to be of type itk::VariableLengthVector.
* *
*/ */
...@@ -156,7 +159,13 @@ namespace Functor { ...@@ -156,7 +159,13 @@ namespace Functor {
/** \class VectorRescaleIntensityImageFilter /** \class VectorRescaleIntensityImageFilter
* \brief * \brief This filter performs a rescaling of a vector image on a per band basis.
*
* 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.
*
* 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.
* *
* \ingroup IntensityImageFilters * \ingroup IntensityImageFilters
* \ingroup MultiThreaded * \ingroup MultiThreaded
......
...@@ -24,7 +24,8 @@ PURPOSE. See the above copyright notices for more information. ...@@ -24,7 +24,8 @@ PURPOSE. See the above copyright notices for more information.
namespace otb namespace otb
{ {
/** \class SpatialObjectDXFReader /** \class SpatialObjectDXFReader
* \brief * \brief This class reads the DXF file format to SpatialObjects.
*
* \ingroup ObjectSource * \ingroup ObjectSource
*/ */
template <class TSpatialObject> template <class TSpatialObject>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment