]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMIPCreator.cxx
0e737bd9b168464c798c046abe9ade27fd5ac494
[bbtk.git] / packages / vtk / src / bbvtkMIPCreator.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbvtkMIPCreator.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/05/15 14:58:01 $
6   Version:   $Revision: 1.6 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *  \file 
33  *  \brief 
34  */
35
36
37
38 #ifdef _USE_VTK_
39
40
41 #include "bbvtkMIPCreator.h"
42 #include "bbvtkPackage.h"
43
44 namespace bbvtk
45 {
46
47
48    BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MIPCreator)
49    BBTK_BLACK_BOX_IMPLEMENTATION(MIPCreator,bbtk::AtomicBlackBox);
50
51
52
53
54
55         //---------------------------------------------------------------------
56    void MIPCreator::bbUserSetDefaultValues() 
57    { 
58            bbSetInputShift(0);
59            bbSetInputScale(1.0);
60            mCast        = NULL;  
61            mMIP         = NULL;  
62            mMapper      = NULL;  
63            mVolume      = NULL;  
64    }
65         
66         //---------------------------------------------------------------------
67    void MIPCreator::bbUserInitializeProcessing() 
68    {
69            
70     // Create the pipeline
71     mCast = vtkImageShiftScale::New();
72     mCast->SetOutputScalarTypeToUnsignedChar();
73     mCast->ClampOverflowOn();
74     
75     mMIP = vtkVolumeRayCastMIPFunction::New();
76     mMIP->SetMaximizeMethodToScalarValue();
77     
78     mMapper = vtkVolumeRayCastMapper::New();
79     mMapper->SetVolumeRayCastFunction(mMIP);
80     mMapper->SetInput(mCast->GetOutput()); // (smoother.GetOutput())
81     
82     mVolume = vtkVolume::New();
83     mVolume->SetMapper(mMapper);
84
85     //  mMapper->ScalarVisibilityOff();
86     //    mMapper->ImmediateModeRenderingOn();
87
88     bbSetOutputOut(mVolume);
89 }
90
91         //---------------------------------------------------------------------
92    void MIPCreator::bbUserFinalizeProcessing() 
93    { 
94            if (mCast!=NULL)
95            {
96                    mCast->Delete();
97                    mCast=NULL;
98            }
99
100            if (mMIP!=NULL)
101            {
102                    mMIP->Delete();
103                    mMIP=NULL;
104            }
105
106            if (mMapper!=NULL)
107            {
108                    mMapper->Delete();
109                    mMapper=NULL;
110            }
111
112            if (mVolume!=NULL)
113            {
114                    mVolume->Delete();
115                    mVolume=NULL;
116            }
117            
118
119    }
120 //---------------------------------------------------------------------
121
122    void MIPCreator::Process()
123    {
124      mCast->SetInput( bbGetInputIn() );
125      mCast->SetScale( bbGetInputScale() / 100.0 );
126      mCast->SetShift( -bbGetInputShift() );
127
128      mMapper->Update();
129      
130      //     mVolume->GetProperty()->SetColor( bbGetInputColour()[0],  bbGetInputColour()[1], bbGetInputColour()[2] );
131      //     mVolume->GetProperty()->SetOpacity( bbGetInputOpacity() );
132      
133    }
134 }//namespace bbtk
135
136 #endif // _USE_VTK_
137