]> Creatis software - gdcm.git/blob - src/gdcmOrientation.h
Typo
[gdcm.git] / src / gdcmOrientation.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmOrientation.h,v $
5   Language:  C++
6   Date:      $Date: 2005/07/29 15:07:56 $
7   Version:   $Revision: 1.3 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMORIENTATION_H
20 #define GDCMORIENTATION_H
21
22 #include "gdcmBase.h"
23
24 namespace gdcm 
25 {
26 typedef struct
27 {
28    double x;
29    double y;
30    double z;
31 } vector3D;
32
33 typedef std::pair<double, double> Res;
34 class File;
35
36 //-----------------------------------------------------------------------------
37 /**
38  * \brief Orientation class for dealing with DICOM image orientation
39  */
40 class GDCM_EXPORT Orientation : public Base
41 {
42 public:
43   Orientation() {};
44   ~Orientation() {};
45
46    double TypeOrientation( File* file );
47
48 private:
49    Res VerfCriterion(int typeCriterion, double criterionNew, Res const & res);
50    double CalculLikelyhood2Vec(vector3D const & refA, vector3D const & refB, 
51                                vector3D const & ori1, vector3D const & ori2);
52    vector3D ProductVectorial(vector3D const & vec1, vector3D const & vec2);
53 };
54 } // end namespace gdcm
55 //-----------------------------------------------------------------------------
56 #endif