aimsalgo  5.1.2
Neuroimaging image processing
minimisation.h
Go to the documentation of this file.
1 /* Copyright (C) 2000-2013 CEA
2  *
3  * This software and supporting documentation were developed by
4  * bioPICSEL
5  * CEA/DSV/I²BM/MIRCen/LMN, Batiment 61,
6  * 18, route du Panorama
7  * 92265 Fontenay-aux-Roses
8  * France
9  */
10 
11 #ifndef AIMS_REGISTRATION_MINIMISATION_H
12 #define AIMS_REGISTRATION_MINIMISATION_H
13 
14 
16 #include <aims/resampling/motion.h>
17 
18 
20 {
21  public:
22  Minimisation() {_Pkept=0.5; _transfo = 1;};
23  Minimisation(double Pkept, int transfo) {_Pkept=Pkept; _transfo = transfo;};
25 
26 
27  template <class T>
28  Motion quaternion(DisplacementField<T>& displacementField);
29 
30 
31  private:
32  double _Pkept;
33  int _transfo;
34 
35 };
36 
37 #endif
Minimisation(double Pkept, int transfo)
Definition: minimisation.h:23
Motion quaternion(DisplacementField< T > &displacementField)