]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkFlip.cxx
2024 Feature FLIP X Y Z
[bbtk.git] / packages / vtk / src / bbvtkFlip.cxx
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
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbvtkFlip.cxx,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:51:58 $
33   Version:   $Revision: 1.5 $
34 =========================================================================*/
35
36 /**
37  *  \file 
38  *  \brief 
39  */
40
41 #ifdef _USE_VTK_
42 #include "bbvtkFlip.h"
43 #include "bbvtkPackage.h"
44
45 namespace bbvtk
46 {
47    BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,Flip)
48    BBTK_BLACK_BOX_IMPLEMENTATION(Flip,bbtk::AtomicBlackBox);
49
50 //---------------------------------------------------------------------
51
52    void Flip::bbUserSetDefaultValues() 
53    { 
54       //std::cout << "-------- entree ds Flip::bbUserSetDefaultValues()\n" << std::endl;
55       
56       bbSetInputIn(NULL); 
57       bbSetInputAxis("Y"); 
58       mImageOut = NULL;
59       bbSetOutputOut(NULL);
60    }
61
62 //---------------------------------------------------------------------
63
64    void Flip::bbUserInitializeProcessing() 
65    {
66        //std::cout << "-------- entree ds Flip::bbUserInitalizeProcessing()\n" << std::endl;
67    }
68   
69 //---------------------------------------------------------------------
70
71    void Flip::bbUserFinalizeProcessing() 
72    {
73             //std::cout << "-------- entree ds Flip::bbUserFinalizeProcessing()\n" << std::endl;
74    // WTF? we never enter here // JPR  bbUserFinalizeProcessing()  JPR  
75       if (mImageOut!=NULL)
76       {
77         mImageOut->Delete();
78         mImageOut=NULL;
79       }
80       bbSetOutputOut(mImageOut);          
81    }
82
83 //---------------------------------------------------------------------
84  
85  ///  :
86  ///  - receives a vtkImageData*imageIn, flips it
87  ///  - exports a vtkImageData*  
88  ///  
89  ///
90 void Flip::Process()
91 {
92         
93         if (bbGetInputIn()!=NULL)
94         {
95                 if (mImageOut!=NULL)
96                 {
97                         mImageOut->Delete();
98                         mImageOut=NULL;
99                 } // if mImageOut
100         
101                 mImageOut = vtkImageData::New();  // Alloc depends on  bbGetInputIn().size()  
102                 mImageOut->Initialize();
103                 mImageOut->SetScalarType(  bbGetInputIn()->GetScalarType() );
104                 mImageOut->SetSpacing(   bbGetInputIn()->GetSpacing()  );
105                 mImageOut->SetDimensions(   bbGetInputIn()->GetDimensions()  );
106                 mImageOut->SetNumberOfScalarComponents( bbGetInputIn()->GetNumberOfScalarComponents() );
107                 mImageOut->AllocateScalars();
108         
109                 int inputdims[3];
110                 //   int outputdims[3];
111                 bbGetInputIn()->GetDimensions (inputdims);
112                 bbGetInputIn()->Update();
113                 int nbScalComp  = bbGetInputIn()->GetNumberOfScalarComponents();
114                 int scalarSize  = bbGetInputIn()->GetScalarSize();
115                 int lineSize    = inputdims[0]*scalarSize*nbScalComp;      
116                 int planeSize   = inputdims[1]*lineSize;
117                 char *pixelsIn  = (char *)bbGetInputIn()->GetScalarPointer();
118                 char *pixelsOut = (char *)mImageOut->GetScalarPointer();
119         
120                 char *lineIn;
121                 char *lineOut;
122                 char *debPlanIn;
123                 char *debPlanOut;
124                 int i,j,k;
125                 
126                 if ( (bbGetInputAxis()=="X") || (bbGetInputAxis()=="x") )
127                 {  
128
129                         for(k=0; k<inputdims[2]; k++)  // iterate  planes
130                         {  
131                                 for(j=0; j<inputdims[1]; j++)  // iterates  rows
132                                 { 
133                                         for(i=0; i<inputdims[0]; i++)  // iterates  columns
134                                         { 
135                                                 pixelsIn = (char *)bbGetInputIn()->GetScalarPointer(i,j,k);
136                                                 pixelsOut = (char *)mImageOut->GetScalarPointer(inputdims[0]-1-i,j,k);
137                                                 memcpy(pixelsOut,  pixelsIn, scalarSize );
138                                         }       // for i
139                                 }       // for j
140                         } // for k
141
142                 } else if ( (bbGetInputAxis()=="Z") || (bbGetInputAxis()=="z") )  {  
143
144                         for(k=0; k<inputdims[2]; k++)  // iterate  planes
145                         {  
146                                 for(j=0; j<inputdims[1]; j++)  // iterates  rows
147                                 { 
148                                         for(i=0; i<inputdims[0]; i++)  // iterates  columns
149                                         { 
150                                                 pixelsIn = (char *)bbGetInputIn()->GetScalarPointer(i,j,k);
151                                                 pixelsOut = (char *)mImageOut->GetScalarPointer(i,j,inputdims[2]-1-k);
152                                                 memcpy(pixelsOut,  pixelsIn, scalarSize );
153                                         }       // for i
154                                 }       // for j
155                         } // for k
156
157                 } else {  
158
159                         for(k=0; k<inputdims[2]; k++)  // iterate  planes
160                         {  
161                                 debPlanIn       = pixelsIn+k*planeSize;
162                                 debPlanOut      = pixelsOut+k*planeSize;
163                                 for(j=0; j<inputdims[1]; j++)  // iterates  rows
164                                 { 
165                                         lineIn = debPlanIn+j*lineSize;
166                                         lineOut = debPlanOut+(inputdims[1]-1-j)*lineSize;
167                                         memcpy(lineOut,  lineIn, lineSize);
168                                 }       // for j
169                         } // for k
170
171                 } //if
172                 mImageOut->Modified();
173                 bbSetOutputOut( mImageOut  );           
174         } // bbGetInputIn
175
176 }
177
178
179 }//namespace bbtk
180
181 #endif // _USE_VTK_