]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMIPCreator.cxx
c4a04b87fd53180391e47c9cbe4b11066734929f
[bbtk.git] / packages / vtk / src / bbvtkMIPCreator.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbvtkMIPCreator.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:30 $
6   Version:   $Revision: 1.4 $
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    void MIPCreator::bbUserConstructor() 
56    { 
57      Init();
58      bbSetInputShift(0);
59      bbSetInputScale(1.);
60    }
61    void MIPCreator::bbUserCopyConstructor() 
62    { 
63      Init();
64    }
65
66    void MIPCreator::Init() 
67    { 
68
69     // Create the pipeline
70     mCast = vtkImageShiftScale::New();
71     mCast->SetOutputScalarTypeToUnsignedChar();
72     mCast->ClampOverflowOn();
73     
74     mMIP = vtkVolumeRayCastMIPFunction::New();
75     mMIP->SetMaximizeMethodToScalarValue();
76     
77     mMapper = vtkVolumeRayCastMapper::New();
78     mMapper->SetVolumeRayCastFunction(mMIP);
79     mMapper->SetInput(mCast->GetOutput()); // (smoother.GetOutput())
80     
81     mVolume = vtkVolume::New();
82     mVolume->SetMapper(mMapper);
83
84     //  mMapper->ScalarVisibilityOff();
85     //    mMapper->ImmediateModeRenderingOn();
86
87     bbSetOutputOut(mVolume);
88 }
89
90    void MIPCreator::bbUserDestructor() 
91    { 
92      mCast->Delete();
93      mMIP->Delete();
94      mMapper->Delete();
95      mVolume->Delete();
96
97    }
98 //---------------------------------------------------------------------
99
100    void MIPCreator::Process()
101    {
102      mCast->SetInput( bbGetInputIn() );
103      mCast->SetScale( bbGetInputScale() / 100. );
104      mCast->SetShift( -bbGetInputShift() );
105
106      mMapper->Update();
107      
108      //     mVolume->GetProperty()->SetColor( bbGetInputColour()[0],  bbGetInputColour()[1], bbGetInputColour()[2] );
109      //     mVolume->GetProperty()->SetOpacity( bbGetInputOpacity() );
110      
111    }
112 }//namespace bbtk
113
114 #endif // _USE_VTK_
115