Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkCumulativeGaussianOptimizer.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkCumulativeGaussianOptimizer.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/11/08 19:39:22 $
00007   Version:   $Revision: 1.4 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 
00018 #ifndef _itkCumulativeGaussianOptimizer_h
00019 #define _itkCumulativeGaussianOptimizer_h
00020 
00021 #include "itkMultipleValuedNonLinearOptimizer.h"
00022 #include "itkCumulativeGaussianCostFunction.h"
00023 
00024 namespace itk
00025 {
00026 
00047 class ITK_EXPORT CumulativeGaussianOptimizer : 
00048     public MultipleValuedNonLinearOptimizer
00049 {
00050 
00051 public:
00052 
00054   typedef CumulativeGaussianOptimizer           Self;
00055   typedef MultipleValuedNonLinearOptimizer      Superclass;
00056   typedef SmartPointer<Self>                    Pointer;
00057   typedef SmartPointer<const Self>              ConstPointer;
00058 
00060   typedef CumulativeGaussianCostFunction CostFunctionType;
00061 
00063   typedef CostFunctionType::MeasureType MeasureType;
00064 
00066   itkNewMacro(Self);
00067 
00069   itkTypeMacro(CumulativeGaussianOptimizer, MultipleValuedNonLinearOptimizer);
00070 
00072   itkSetMacro(DifferenceTolerance, double);
00073   itkSetMacro(Verbose, bool);
00074   itkGetMacro(ComputedMean, double);
00075   itkGetMacro(ComputedStandardDeviation, double);
00076   itkGetMacro(UpperAsymptote, double);
00077   itkGetMacro(LowerAsymptote, double);
00078   itkGetMacro(FinalSampledArray, MeasureType*);
00079   itkGetMacro(FitError, double);
00081 
00082   void SetDataArray(MeasureType * dataArray);
00083 
00085   void StartOptimization();
00086 
00088   void PrintArray(MeasureType * array);
00089 
00090 protected:
00091   CumulativeGaussianOptimizer();
00092   virtual ~CumulativeGaussianOptimizer();
00093   void PrintSelf(std::ostream &os, Indent indent) const;
00094 
00095 private:
00096 
00098   double  m_DifferenceTolerance;
00099 
00101   double  m_ComputedMean; 
00102 
00104   double  m_ComputedStandardDeviation; 
00105 
00107   double  m_ComputedAmplitude;  
00108 
00110   double  m_ComputedTransitionHeight;
00111 
00113   double  m_UpperAsymptote;
00114 
00116   double  m_LowerAsymptote;
00117 
00119   double  m_OffsetForMean;
00120 
00122   bool m_Verbose;
00123 
00125   double m_FitError;
00126 
00128   MeasureType * m_FinalSampledArray;
00129 
00131   MeasureType * m_CumulativeGaussianArray;
00132 
00134   MeasureType * ExtendGaussian(MeasureType * originalArray, MeasureType * extendedArray, int startingPointForInsertion);
00135 
00137   MeasureType * RecalculateExtendedArrayFromGaussianParameters(MeasureType * originalArray,
00138                                                                MeasureType * extendedArray,
00139                                                                int startingPointForInsertion);
00140 
00142   double FindAverageSumOfSquaredDifferences(MeasureType * array1, MeasureType * array2);
00143 
00145   void FindParametersOfGaussian(MeasureType * sampledGaussianArray);
00146 
00148   void MeasureGaussianParameters(MeasureType * array);
00149 
00151   void PrintComputedParameterHeader();
00152 
00154   void PrintComputedParameters();
00155 
00157   double VerticalBestShift(MeasureType * originalArray, MeasureType * newArray);
00158 };
00159 
00160 } // end namespace itk
00161 
00162 #endif
00163 
00164 
00165 
00166 

Generated at Sun Mar 11 23:58:19 2007 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000