]> Creatis software - creaRigidRegistration.git/blob - lib/Surface.h
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / lib / Surface.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------      */                                                                    
26
27 #include "vtkImageData.h"
28 #include "vtkProp3D.h"
29 #include "vtkRenderer.h"
30 #include "vtkPoints.h"
31 #include "vtkCellArray.h"
32
33 #include <string>
34
35 class Surface 
36 {
37         //----------------------------------------------------------------------------------------
38         // Methods definition
39         //----------------------------------------------------------------------------------------
40         public:
41         //--------------------------
42         //Constructor & Destructor
43         //--------------------------            
44                 Surface(vtkImageData* imageData, int ZHeight, std::string iColor);
45                 ~Surface();
46         //--------------------------
47         //Methods
48         //--------------------------
49                 /*
50                 getting ready the points
51                 */
52                 void initialize(int dimensions[],double spacing[]);
53                 /*
54                 Calculate the new image and save it in the attribute imageResult
55                 it is used if the user had given the imageData
56                 */
57                 void createSurface(vtkImageData* imageData);
58                 
59                 /*
60                 Returns the Surface
61                 */
62                 vtkActor* getSurface();
63                 
64                 /*
65                 constructing image surface
66                 */
67                 void surface(vtkImageData* imageData);
68
69                 /*
70                 Template for constructing the surface by image type
71                 */
72                 template <class T> void surfaceByType(T* dataImagePointer, vtkImageData* imageData, T max);
73                 
74
75
76         //----------------------------------------------------------------------------------------
77         // Attributes declaration
78         //----------------------------------------------------------------------------------------
79         private: 
80                 /*
81                  Surface
82                 */
83                 vtkActor* surfaceResult;
84                 
85                 /*
86                 Maximun height of the surface
87                 */
88                 int height;
89                 
90                 /*
91                 Color for the surface
92                 */
93                 std::string color;
94
95                 /*
96                 The type of image being viewed
97                 */
98                 int imageType;
99
100                 /*
101                 The points of the surface
102                 */
103                 vtkPoints* surfacePoints;
104
105                 /*
106                 Cells to be constructed from the surface
107                 */
108                 vtkCellArray* surfaceCells;
109 };
110