]> Creatis software - creaRigidRegistration.git/blob - lib/CheckBoard.h
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / lib / CheckBoard.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 "vtkImageResample.h"
29 #include <iostream>
30 #include <fstream>
31 #include <string>
32 #include <vector>
33
34 class CheckBoard
35 {
36         public: 
37                 CheckBoard();
38                 ~CheckBoard();
39
40                 //Initialize newImage points
41                 void initialize(int dimensions[], double spacing[]);
42
43                 //Calculate the new image and save it in the attribute image
44                 void calculateImage();
45                 
46                 //Gets the result
47                 vtkImageData* getFilteredImage();
48                 
49                 //Gets the image Size
50                 int getImageSize();
51
52                 //Constructs new image from image 2
53                 void createImage(vtkImageData *img1, vtkImageData *img2, int sizeX, int sizeY);
54
55                 void setInputImage1(vtkImageData *_image);
56
57                 void setInputImage2(vtkImageData *_image);
58
59                 void setCols(int cols);
60
61                 void setRows(int rows);
62                 template <class T> void createImageByType(T* dataImagePointer1, T* dataImagePointer2, T* dataImageResultPointer, vtkImageData *img1, vtkImageData *img2, int sizeX, int sizeY);
63
64         // --- Atributes --- //
65         private: 
66
67                 bool processed;
68
69                 int type;
70
71                 vtkImageData *image1;
72
73                 vtkImageData *image2;
74
75                 //Resulting image
76                 vtkImageData *newImage;
77
78                 //Image Resampler
79                 vtkImageResample *resample;
80
81                 //Rsulting image from the resampler
82                 vtkImageData *result;
83
84                 //Total number of divisions for the X axis (colums)
85                 int squaresX;
86
87                 //Total number of divisions for the Y axis (rows)
88                 int squaresY; 
89
90                 // Image 1 extent (iniX, finX, iniY, finY, iniZ, finZ)
91                 int extImg1[6];
92                 // Dimensionality image 1
93                 int dimImg1[3];
94                 // Image 1 spacing
95                 double spcImg1[3];
96
97                 // Image 2 extent (iniX, finX, iniY, finY, iniZ, finZ)
98                 int extImg2[6];
99                 // Dimensionality image 2
100                 int dimImg2[3];
101                 // Image 2 spacing
102                 double spcImg2[3];
103
104 };
105
106 //#endif
107
108