]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkVolumeRenderer.cxx
*** empty log message ***
[bbtk.git] / packages / vtk / src / bbvtkVolumeRenderer.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbvtkVolumeRenderer.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/12/16 12:48:10 $
6   Version:   $Revision: 1.1 $
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 "bbvtkVolumeRenderer.h"
42 #include "bbvtkPackage.h"
43
44 namespace bbvtk
45 {
46
47
48    BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,VolumeRenderer)
49    BBTK_BLACK_BOX_IMPLEMENTATION(VolumeRenderer,bbtk::AtomicBlackBox);
50
51
52
53
54
55    void VolumeRenderer::bbUserConstructor() 
56    { 
57      Init();
58      bbSetInputColorFunction(0);
59      bbSetInputOpacityFunction(0);
60    }
61    void VolumeRenderer::bbUserCopyConstructor(bbtk::BlackBox::Pointer) 
62    { 
63      Init();
64    }
65
66    void VolumeRenderer::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     mRayCastFunction = vtkVolumeRayCastCompositeFunction::New();
78     
79     mMapper = vtkVolumeRayCastMapper::New();
80     mMapper->SetVolumeRayCastFunction(mRayCastFunction);
81
82     
83     mVolume = vtkVolume::New();
84     mVolume->SetMapper(mMapper);
85
86     //  mMapper->ScalarVisibilityOff();
87     //    mMapper->ImmediateModeRenderingOn();
88
89     bbSetOutputOut(mVolume);
90 }
91
92    void VolumeRenderer::bbUserDestructor() 
93    { 
94      mRayCastFunction->Delete();
95      mMapper->Delete();
96      mVolume->Delete();
97
98    }
99 //---------------------------------------------------------------------
100
101    void VolumeRenderer::Process()
102    {
103      bool changed = false;
104      if ( bbGetInputStatus("In") != bbtk::UPTODATE )
105        {
106          mMapper->SetInput( bbGetInputIn() );
107          changed = true;
108        }
109      if ( ( bbGetInputStatus("ColorFunction") != bbtk::UPTODATE ) &&
110           ( bbGetInputColorFunction() != 0 ) )
111        {
112          mVolume->GetProperty()->SetColor( bbGetInputColorFunction() );
113          changed = true;
114        }
115      if ( ( bbGetInputStatus("OpacityFunction") != bbtk::UPTODATE ) &&
116           ( bbGetInputOpacityFunction() != 0 ) )
117        {
118          mVolume->GetProperty()->SetScalarOpacity(bbGetInputOpacityFunction());
119          changed = true;
120        }
121     
122      if (changed) mMapper->Update();
123      
124    }
125
126 }//namespace bbtk
127
128 #endif // _USE_VTK_
129