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: bbvtkMIPCreator.h,v $
32 Date: $Date: 2012/11/16 08:51:58 $
33 Version: $Revision: 1.11 $
34 =========================================================================*/
37 * \brief Short description in one line
39 * Long description which
40 * can span multiple lines
44 * \brief Pattern for the definition of a new type of Node (header)
47 * \class bbtk::NodePatern
48 * \brief Pattern for the definition of a new type of Node
53 #ifndef __bbvtkMIPCreator_h_INCLUDED__
54 #define __bbvtkMIPCreator_h_INCLUDED__
56 #include "bbtkAtomicBlackBox.h"
58 #include "vtkImageData.h"
59 #include <vtkImageShiftScale.h>
61 //EED 2018-07-20 Migration VTK8
62 #if (VTK_MAJOR_VERSION <= 7)
63 #include <vtkVolumeRayCastMIPFunction.h>
64 #include <vtkVolumeRayCastMapper.h>
66 #include <vtkFixedPointVolumeRayCastMapper.h>
70 #include "vtkProp3D.h"
71 #include "vtkVolume.h"
73 #include "bbvtk_EXPORT.h"
77 class bbvtk_EXPORT MIPCreator : public bbtk::AtomicBlackBox
80 BBTK_BLACK_BOX_INTERFACE(MIPCreator,bbtk::AtomicBlackBox);
81 // BBTK_DECLARE_INPUT(Contour,int);
82 BBTK_DECLARE_INPUT(In,vtkImageData *);
83 BBTK_DECLARE_INPUT(DensityPoints, std::vector<double> );
84 BBTK_DECLARE_INPUT(OpacityValues, std::vector<double> );
85 BBTK_DECLARE_INPUT(MinColorWindow, double );
86 BBTK_DECLARE_INPUT(MaxColorWindow, double );
87 BBTK_DECLARE_OUTPUT(Out,vtkProp3D*);
88 BBTK_PROCESS(Process);
93 std::vector<double> DensityPoints;
94 std::vector<double> OpacityValues;
95 vtkImageShiftScale *mCast;
98 //EED 2018-07-20 Migration VTK8
99 #if (VTK_MAJOR_VERSION <= 7)
100 vtkVolumeRayCastMIPFunction *mMIP;
101 vtkVolumeRayCastMapper *mMapper;
103 vtkFixedPointVolumeRayCastMapper *mMapper;
109 vtkPiecewiseFunction *opacityTransferFunction;
110 vtkPiecewiseFunction *grayTransferFunction;
114 //=================================================================
115 // UserBlackBox description
116 BBTK_BEGIN_DESCRIBE_BLACK_BOX(MIPCreator,bbtk::AtomicBlackBox);
117 BBTK_NAME("MIPCreator");
118 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
119 BBTK_DESCRIPTION("Creates a Maximum Intensity Projection (MIP) view of 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(MIPCreator,DensityPoints,"Density values of the original image", std::vector<double>,"");
122 BBTK_INPUT(MIPCreator,OpacityValues,"Opacity values for the MIP function", std::vector<double>,"");
123 BBTK_INPUT(MIPCreator,In,"Input Image",vtkImageData *,"");
124 BBTK_INPUT(MIPCreator,MinColorWindow,"Minimum density value for MIP color function", double,"");
125 BBTK_INPUT(MIPCreator,MaxColorWindow,"Maximum density value for MIP color function", double,"");
126 BBTK_OUTPUT(MIPCreator,Out,"MIP object to plug into a 3D viewer",vtkProp3D*,"");
127 BBTK_END_DESCRIBE_BLACK_BOX(MIPCreator);
128 //=================================================================
132 #endif //__bbtvtkMIPCreator_h__