diff --git a/Applications/ChangeDetection/otbMultivariateAlterationDetector.cxx b/Applications/ChangeDetection/otbMultivariateAlterationDetector.cxx
index fce6b19253272cdc7a77648617c2acd5ceefebee..1d643886de8cc40d88c9e59051f4349f5f95c84a 100644
--- a/Applications/ChangeDetection/otbMultivariateAlterationDetector.cxx
+++ b/Applications/ChangeDetection/otbMultivariateAlterationDetector.cxx
@@ -118,6 +118,13 @@ private:
 
     changeFilter->SetInput1(GetParameterImage("in1"));
     changeFilter->SetInput2(GetParameterImage("in2"));
+    changeFilter->GetOutput()->UpdateOutputInformation();
+
+    otbAppLogINFO("Input 1 mean: "<<changeFilter->GetMean1());
+    otbAppLogINFO("Input 2 mean: "<<changeFilter->GetMean2());
+    otbAppLogINFO("Input 1 transform: "<<changeFilter->GetV1());
+    otbAppLogINFO("Input 2 transform: "<<changeFilter->GetV2());
+    otbAppLogINFO("Rho: "<<changeFilter->GetRho());
 
     m_Ref = changeFilter;
 
diff --git a/Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h b/Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h
index e7810f80185dc6deae7f0b93e5a00089cc8c195c..f27db27f2c079c67901e6ebcabcbfa02d513d0fb 100644
--- a/Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h
+++ b/Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h
@@ -117,6 +117,12 @@ public:
   typedef vnl_vector<RealType>                                 VnlVectorType;
   typedef vnl_matrix<RealType>                                 VnlMatrixType;
 
+  /** Get the mean of bands from image 1 */
+  itkGetMacro(Mean1,VnlVectorType);
+
+  /** Get the mean of bands from image 2 */
+  itkGetMacro(Mean2,VnlVectorType);
+
   /** Get the linear combinations of bands of image 1 associated to
    *  multivariate alteration detector. This is a square matrix of
    *  size nbBand of image 1. */
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index b6851aaf53e522d48f6e8e38162d2847646ce987..889a945339fb93974d241024b2fcb8db86eeece7 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,4 +1,39 @@
-OTB-v.3.12.0 - Changes since version 3.10.0 (2011/??/??)
+OTB-v.3.14.0 - Changes since version 3.12.0 (2012/01/31)
+-----------------------------------------
+* Library
+* System
+* Monteverdi
+* Bug fixes
+  * Monteverdi
+    * 0000527: While saving dataset with rescaling option, the channels n° > 3 are incorrect
+
+  * OTB-Packaging
+    * 0000525: Python not found during ubuntu package build
+    * 0000526: Fix input of bfTvPolygonizationRasterization_WGS84
+
+  * Orfeo Toolbox (OTB)
+    * 0000558: GetParameterFloat method of WrapperApplication class does not returns exactly input value
+    * 0000548: Parameters default values should appear in command line help interface of OTB applications
+    * 0000550: BlockMatching application throws an exception  when the "sub-pixel" mode is activated
+    * 0000549: Error message related to boost_any_cast in  StereoRectificationGridGenerator application
+    * 0000547: MeanShiftFilter validation test is fialinf for Iteration and Spatial output
+    * 0000537: Impossible to set rescale type for Convert application
+    * 0000542: Problem with win arch and testing
+    * 0000521: Applications do not work anymore (Wrapper problem)
+    * 0000522: otbApplicationLauncherQT is not reflecting the Disable/Enable state correctly
+    * 0000511: Tags are repeated twice in Application, when using Qt framework
+
+  * OTB-lib
+    * 0000535: Must rename test uaTvGeometricSarSenorModelAdapterTest in uaTvGeometricSarSenSorModelAdapterTest
+    * 0000532: OTB_SHOW_ALL_MSG_DEBUG option changes apTvClTrainSVMImagesClassifierQB456 test results
+    * 0000512: OTB cmake configuration warns for a gdal/geotiff  conflict but I can open tiff file
+
+  * OTB-applications
+    * 0000515: Space managing in command line
+    * 0000510: OTB-Applications cannot compile when the sources are located in a directory with spaces in its name
+
+
+OTB-v.3.12.0 - Changes since version 3.10.0 (2011/06/30)
 -----------------------------------------
 * Library
   * MaximumAutocorrelationFactorImageFilter