NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
itkUCLSimplexOptimizer.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef itkUCLSimplexOptimizer_h
16 #define itkUCLSimplexOptimizer_h
17 
18 #include <NifTKConfigure.h>
20 
21 #include <itkAmoebaOptimizer.h>
22 
23 namespace itk
24 {
25 
32 class NIFTKITK_WINEXPORT ITK_EXPORT UCLSimplexOptimizer : public AmoebaOptimizer
33 {
34 public:
37  typedef AmoebaOptimizer Superclass;
38  typedef SmartPointer<Self> Pointer;
39  typedef SmartPointer<const Self> ConstPointer;
40 
42  itkNewMacro(Self);
43 
45  itkTypeMacro( UCLSimplexOptimizer, AmoebaOptimizer );
46 
48  virtual void SetCostFunction(SingleValuedCostFunction * costFunction ) override;
49 
50 protected:
52  virtual ~UCLSimplexOptimizer();
53 
54 private:
55  UCLSimplexOptimizer(const Self&); //purposely not implemented
56  void operator=(const Self&); //purposely not implemented
57 
58 };
59 
60 } // end namespace itk
61 
62 #endif
#define NIFTKITK_WINEXPORT
Definition: niftkITKWin32ExportHeader.h:28
Definition: niftkITKAffineResampleImage.cxx:74
Subclass itkAmoebaOptimizer to fix bug in SetCostFunction.
Definition: itkUCLSimplexOptimizer.h:32
SmartPointer< Self > Pointer
Definition: itkUCLSimplexOptimizer.h:38
UCLSimplexOptimizer Self
Definition: itkUCLSimplexOptimizer.h:36
SmartPointer< const Self > ConstPointer
Definition: itkUCLSimplexOptimizer.h:39
AmoebaOptimizer Superclass
Definition: itkUCLSimplexOptimizer.h:37