2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------ */
28 /*=========================================================================
30 Module: $RCSfile: bbvtkVolumeRenderer.h,v $
32 Date: $Date: 2012/11/16 08:51:58 $
33 Version: $Revision: 1.7 $
34 =========================================================================*/
39 * \brief Short description in one line
41 * Long description which
42 * can span multiple lines
46 * \brief Pattern for the definition of a new type of Node (header)
49 * \class bbtk::NodePatern
50 * \brief Pattern for the definition of a new type of Node
57 #ifndef __bbvtkVolumeRenderer_h_INCLUDED__
58 #define __bbvtkVolumeRenderer_h_INCLUDED__
61 #include "bbtkAtomicBlackBox.h"
63 #include "vtkImageData.h"
64 //#include <vtkImageShiftScale.h>
65 //#include <vtkVolumeRayCastMIPFunction.h>
66 #include "vtkVolumeProperty.h"
67 //EED 2018-07-20 Migration VTK8
68 #if (VTK_MAJOR_VERSION <= 7)
69 #include "vtkVolumeRayCastCompositeFunction.h"
70 #include "vtkVolumeRayCastMapper.h"
72 #include <vtkFixedPointVolumeRayCastMapper.h>
74 #include "vtkProp3D.h"
75 #include "vtkVolume.h"
77 #include "vtkPiecewiseFunction.h"
78 #include "vtkColorTransferFunction.h"
80 #include "bbvtk_EXPORT.h"
81 #include "vtkVolumeProperty.h"
85 class bbvtk_EXPORT VolumeRenderer : public bbtk::AtomicBlackBox
88 BBTK_BLACK_BOX_INTERFACE(VolumeRenderer,bbtk::AtomicBlackBox);
90 BBTK_DECLARE_INPUT(In, vtkImageData *);
91 BBTK_DECLARE_INPUT(ColorFunction, vtkPiecewiseFunction*);
92 BBTK_DECLARE_INPUT(ColorFunction1, vtkColorTransferFunction *);
93 BBTK_DECLARE_INPUT(OpacityFunction,vtkPiecewiseFunction*);
95 BBTK_DECLARE_OUTPUT(Out, vtkProp3D*);
96 BBTK_PROCESS(Process);
102 vtkVolumeProperty *mVolumeProperty;
103 //EED 2018-07-20 Migration VTK8
104 #if (VTK_MAJOR_VERSION <= 7)
105 vtkVolumeRayCastCompositeFunction *mRayCastFunction;
106 vtkVolumeRayCastMapper *mMapper;
108 vtkFixedPointVolumeRayCastMapper *mMapper;
111 vtkVolumeProperty *_volumeProperty;
114 //=================================================================
115 // UserBlackBox description
116 BBTK_BEGIN_DESCRIBE_BLACK_BOX(VolumeRenderer,bbtk::AtomicBlackBox);
117 BBTK_NAME("VolumeRenderer");
118 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
119 BBTK_DESCRIPTION("Renders a 3D image. Creates a vtkProp3D object to insert into a 3D scene (e.g. a Viewer3D)");
120 BBTK_CATEGORY("3D object creator");
121 BBTK_INPUT(VolumeRenderer,ColorFunction, "Color function", vtkPiecewiseFunction*,"");
122 BBTK_INPUT(VolumeRenderer,ColorFunction1, "Color function1 instead of Color function",vtkColorTransferFunction*,"");
123 BBTK_INPUT(VolumeRenderer,OpacityFunction,"Opacity function", vtkPiecewiseFunction*,"");
124 BBTK_INPUT(VolumeRenderer,In, "Input Image", vtkImageData *,"");
126 BBTK_OUTPUT(VolumeRenderer,Out, "3D object to plug into a 3D viewer",vtkProp3D*, "");
127 BBTK_END_DESCRIBE_BLACK_BOX(VolumeRenderer);
128 //=================================================================
133 #endif //__bbtvtkVolumeRenderer_h__