diff --git a/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx b/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx
index 47dbc3bc3037cf31d55035b2a60a4468051885f4..c6e12f241bdadc42a6f1852289d111f78c37a4cb 100644
--- a/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx
+++ b/Modules/Applications/AppFiltering/app/otbFastNLMeans.cxx
@@ -59,7 +59,7 @@ private:
         "This filter relies on integral images. Overflow may happen though the risk is limited "
         " by OTB mechanism which process data by chunks.");
     SetDocAuthors("OTB-Team");
-    SetDocSeeAlso(" ");
+    SetDocSeeAlso("Smoothing");
     AddDocTag(Tags::Filter);
 
     // Parameter declarations
diff --git a/Modules/Applications/AppFiltering/app/otbSmoothing.cxx b/Modules/Applications/AppFiltering/app/otbSmoothing.cxx
index 4403eb82483cb65831730652845509b57b548c64..4803bc7e934cfe09e825ea39c82f1d571284b718 100644
--- a/Modules/Applications/AppFiltering/app/otbSmoothing.cxx
+++ b/Modules/Applications/AppFiltering/app/otbSmoothing.cxx
@@ -62,11 +62,21 @@ private:
 
     SetDocLongDescription(
         "This application applies a smoothing filter to an "
-        "image. Three methods can be used: a gaussian filter , a mean filter "
-        ", or an anisotropic diffusion using the Perona-Malik algorithm.");
+        "image. Three methods can be used: a mean filter, a gaussian filter based on [1]"
+        ", or an anisotropic diffusion using the Perona-Malik algorithm [2].");
     SetDocLimitations("None");
     SetDocAuthors("OTB-Team");
-    SetDocSeeAlso(" ");
+    SetDocSeeAlso("FastNLMeans \n"
+                   "[1] Tony Lindeberg Discrete "
+                   "Scale-Space Theory and the Scale-Space Primal Sketch.  Dissertation. Royal "
+                   "Institute of Technology, Stockholm, Sweden. May 1991 \n"
+                   "[2] Pietro Perona and Jitendra Malik, "
+                   "Scale-space and edge detection using anisotropic diffusion, "
+                   "IEEE Transactions on Pattern Analysis Machine Intelligence, vol. 12, pp. 629-639, 1990. \n"
+                   "itk::MeanImageFilter (mean mode)\n"
+                   "itk::DiscreteGaussianImageFilter (gaussian mode)\n"
+                   "itk::GradientAnisotropicDiffusionImageFilter (anidif mode)."
+                   );
 
     AddDocTag(Tags::Filter);