]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuImageActor.cxx
#3529 Remove Add ImageToActor
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuImageActor.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 "bbmaracasvisuImageActor.h"
27 #include "bbcreaMaracasVisuPackage.h"
28
29 #include "vtkImageShiftScale.h" 
30 #include <vtkLookupTable.h>
31 #include <vtkColorTransferFunction.h>
32 #include <vtkImageMapToColors.h>
33 #include <vtkImageMapper3D.h>
34 #include <vtkImageProperty.h>
35
36 namespace bbcreaMaracasVisu
37 {
38
39 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,ImageActor)
40 BBTK_BLACK_BOX_IMPLEMENTATION(ImageActor,bbtk::AtomicBlackBox);
41 void ImageActor::Process()
42 {
43     
44     if (bbGetInputActive()==true)
45     {
46         //JCP 04/04/09
47         vtkImageData *img                               = bbGetInputIn();
48         vtkLinearTransform* transform   = bbGetInputTransform();
49         
50         if(img != NULL)
51         {
52             if (bbGetInputLookupTable()==NULL)
53             {
54                 //EED 2017-01-01 Migration VTK7
55 #if VTK_MAJOR_VERSION <= 5
56                 imageactor->SetInput( img );
57 #else
58                 imageactor->SetInputData( img );
59 #endif
60             } else {
61                 vtkImageMapToColors *color = vtkImageMapToColors::New();
62                 color->SetLookupTable( bbGetInputLookupTable() );
63                 color->PassAlphaToOutputOn();
64                 
65                 //EED 2017-01-01 Migration VTK7
66 #if VTK_MAJOR_VERSION <= 5
67                 color->SetInput( img );
68                 color->Update();
69                 imageactor->GetMapper()->SetInput( color->GetOutput() );
70 #else
71                 color->SetInputData( img );
72                 color->Update();
73                 imageactor->GetMapper()->SetInputData( color->GetOutput() );
74 #endif
75                 
76                 if ( bbGetInputInterpolationMode()==0) { imageactor->GetProperty()->SetInterpolationTypeToNearest();    }
77                 if ( bbGetInputInterpolationMode()==1) { imageactor->GetProperty()->SetInterpolationTypeToLinear();             }
78                 if ( bbGetInputInterpolationMode()==2) { imageactor->GetProperty()->SetInterpolationTypeToCubic();              }
79                 imageactor->SetForceOpaque(true);
80             }
81             
82             if (transform!=NULL)
83             {
84                 imageactor->SetUserTransform( transform );
85             } // transform
86             bbSetOutputOut(imageactor);
87         } // img
88         
89         // Interface Update
90         if ((firsttime==true) && (bbGetInputRenderer()!=NULL ))
91         {
92             firsttime=false;
93             bbGetInputRenderer()->AddActor( imageactor );
94         }
95         imageactor->GetProperty()->SetOpacity( bbGetInputOpacity() );
96         bbSetOutputOut(imageactor);
97     }else{
98         if ((firsttime==false) && (bbGetInputRenderer()!=NULL ))
99         {
100             firsttime = true;
101             bbGetInputRenderer()->RemoveActor( imageactor );
102         }
103     }
104 }
105
106 void ImageActor::bbUserSetDefaultValues()
107 {
108     firsttime   = true;
109     imageactor  = NULL;
110     bbSetInputActive(true);
111     bbSetInputIn(NULL);
112     bbSetInputOpacity(1);
113     bbSetInputTransform(NULL);
114     bbSetInputRenderer(NULL);
115     bbSetInputLookupTable(NULL);
116     bbSetInputInterpolationMode(0);
117 }
118
119         
120         //-----------------------------------------------------------------     
121         void ImageActor::bbUserInitializeProcessing()
122         {
123                 imageactor              = vtkImageActor::New();
124                 imageshiftscale = vtkImageShiftScale::New();
125         }
126         
127         //-----------------------------------------------------------------     
128         void ImageActor::bbUserFinalizeProcessing()
129         {
130         }
131         
132         //-----------------------------------------------------------------     
133 }
134 // EO namespace bbcreaMaracasVisu
135
136