]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuSliceImage.cxx
03cbf7295ae4d78e352b19927b4e2ac3ff3398dd
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuSliceImage.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #include "bbcreaMaracasVisuSliceImage.h"
27 #include "bbcreaMaracasVisuPackage.h"
28 namespace bbcreaMaracasVisu
29 {
30
31         
32         
33 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,SliceImage)
34 BBTK_BLACK_BOX_IMPLEMENTATION(SliceImage,bbtk::AtomicBlackBox);
35 void SliceImage::Process()
36 {
37         vtkImageData *imagedata=NULL;
38
39         //std::cout<<"MSJ: test SliceImage::Process()"<<this<<std::endl;
40         if ( bbGetInputIn()!=NULL )
41         {
42           imageReslice->SetInput( bbGetInputIn() );
43           imageReslice->SetInformationInput(bbGetInputIn() );
44
45
46           if (bbGetInputTypeOrientation()==3)
47           {
48                 // Orientation 3 = FREE
49                 // v1 = [ v1x , v1y , v1z ]
50                 // v2 = [ v2x , v2y , v2z ]
51                 // v3 = [ v3x , v3y , v3z ]
52                 // SetResliceAxesDirectionCosines(v1x,v2x,v3x,v1y,v2y,v3y,v1z,v2z,v3z);
53                imageReslice->SetResliceAxesDirectionCosines( bbGetInputResliceAxesDirectionCosines()[0],  // v1x
54                                                              bbGetInputResliceAxesDirectionCosines()[3],  // v2x
55                                                              bbGetInputResliceAxesDirectionCosines()[6],  // v3x
56                                                              bbGetInputResliceAxesDirectionCosines()[1],  // v1y
57                                                              bbGetInputResliceAxesDirectionCosines()[4],  // v2y
58                                                              bbGetInputResliceAxesDirectionCosines()[7],  // v3y
59                                                              bbGetInputResliceAxesDirectionCosines()[2],  // v1z
60                                                              bbGetInputResliceAxesDirectionCosines()[5],  // v2z
61                                                              bbGetInputResliceAxesDirectionCosines()[8]   // v3z
62                                                            );  
63                imageReslice->SetResliceAxesOrigin( bbGetInputSlice()*bbGetInputIn()->GetSpacing()[0] ,0 ,0);
64           } else if (bbGetInputTypeOrientation()==2)
65           {
66                 // Orientation 2 = YZ
67                 // v1 = [ 0 , 0 ,-1 ]
68                 // v2 = [ 1 , 0 , 0 ]
69                 // v3 = [ 0 ,-1 , 0 ]
70                 // SetResliceAxesDirectionCosines(v1x,v2x,v3x,v1y,v2y,v3y,v1z,v2z,v3z);
71                imageReslice->SetResliceAxesDirectionCosines(0,1,0, 0,0,-1 ,-1,0,0);  
72                imageReslice->SetResliceAxesOrigin( bbGetInputSlice()*bbGetInputIn()->GetSpacing()[0] ,0 ,0);
73           } else if (bbGetInputTypeOrientation()==1) {     
74                 // Orientation 1 = XZ
75                 // v1 = [ 1 , 0 , 0 ]
76                 // v2 = [ 0 , 0 , 1 ]
77                 // v3 = [ 0 ,-1 , 0 ]
78                 // SetResliceAxesDirectionCosines(v1x,v2x,v3x,v1y,v2y,v3y,v1z,v2z,v3z);
79                imageReslice->SetResliceAxesDirectionCosines(1,0,0, 0,0,-1 ,0,1,0); 
80                imageReslice->SetResliceAxesOrigin(0, bbGetInputSlice()*bbGetInputIn()->GetSpacing()[1],0 );
81           } else    
82           {
83                 // Orientation 0 = XY
84                 // v1 = [ 1 , 0 , 0 ]
85                 // v2 = [ 0 , 1 , 0 ]
86                 // v3 = [ 0 , 0 , 1 ]
87                 // SetResliceAxesDirectionCosines(v1x,v2x,v3x,v1y,v2y,v3y,v1z,v2z,v3z);
88                imageReslice->SetResliceAxesDirectionCosines(1,0,0, 0,1,0 ,0,0,1);   
89                imageReslice->SetResliceAxesOrigin(0,0, bbGetInputSlice()*bbGetInputIn()->GetSpacing()[2] );
90           } 
91           imageReslice->SetOutputDimensionality(2);
92           imageReslice->SetInterpolationModeToLinear();
93           imagedata = imageReslice->GetOutput();
94           imagedata->Update();
95           imagedata->UpdateInformation();       
96         }
97   bbSetOutputOut( imagedata );
98 }
99         
100         
101         //-----------------------------------------------------------------     
102         void SliceImage::bbUserSetDefaultValues()
103         {
104                 bbSetInputIn(NULL);
105                 bbSetInputZ(0);
106                 bbSetInputSlice(0);
107                 bbSetInputTypeOrientation(0);
108                 imageReslice=NULL;
109                 std::vector<double> lstCos;
110                 lstCos.push_back(1); // v1x
111                 lstCos.push_back(0); // v1y
112                 lstCos.push_back(0); // v1z
113
114                 lstCos.push_back(0); // v2x
115                 lstCos.push_back(1); // v2y
116                 lstCos.push_back(0); // v2z
117
118                 lstCos.push_back(0); // v3x
119                 lstCos.push_back(0); // v3y
120                 lstCos.push_back(1); // v3z
121                 bbSetInputResliceAxesDirectionCosines(lstCos);
122         }
123         
124         //-----------------------------------------------------------------     
125         void SliceImage::bbUserInitializeProcessing()
126         {
127                 imageReslice = vtkImageReslice::New();
128         }
129         
130         //-----------------------------------------------------------------     
131         void SliceImage::bbUserFinalizeProcessing()
132         {
133         }
134         
135         //-----------------------------------------------------------------     
136         
137         
138 }
139 // EO namespace bbcreaMaracasVisu
140
141