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: bbvtkPolyDataToActor.h,v $
32 Date: $Date: 2009/05/15 14:58:01 $
33 Version: $Revision: 1.12 $
34 =========================================================================*/
38 * \brief Short description in one line
40 * Long description which
41 * can span multiple lines
45 * \brief Pattern for the definition of a new type of Node (header)
48 * \class bbtk::NodePatern
49 * \brief Pattern for the definition of a new type of Node
56 #ifndef __vtkPolyDataToActor_h__
57 #define __vtkPolyDataToActor_h__
59 #include "vtkRenderer.h"
60 #include "vtkPolyData.h"
61 #include "vtkPolyDataMapper.h"
62 #include "vtkProp3D.h"
64 #include "vtkScalarsToColors.h"
67 #include "bbtkAtomicBlackBox.h"
72 class /*BBTK_EXPORT*/ PolyDataToActor
74 public bbtk::AtomicBlackBox
77 vtkPolyDataMapper *polydatamapper;
81 BBTK_BLACK_BOX_INTERFACE(PolyDataToActor,bbtk::AtomicBlackBox);
83 BBTK_DECLARE_INPUT(Active,bool);
84 BBTK_DECLARE_INPUT(In,vtkPolyData *);
85 BBTK_DECLARE_INPUT(Opacity,double);
86 BBTK_DECLARE_INPUT(Colour,std::vector<double>);
87 BBTK_DECLARE_INPUT(Renderer,vtkRenderer *);
88 BBTK_DECLARE_INPUT(Transform, vtkLinearTransform *);
89 BBTK_DECLARE_INPUT(Representation, int);
90 BBTK_DECLARE_INPUT(LineWidth, double);
91 BBTK_DECLARE_INPUT(ScalarVisibility, bool);
92 BBTK_DECLARE_INPUT(ScalarVisibilityOn_LookupTable, vtkScalarsToColors*);
93 BBTK_DECLARE_INPUT(ScalarVisibilityOn_NameColorArray, std::string);
94 BBTK_DECLARE_INPUT(ScalarVisibilityOn_ScalarRange, std::vector<double>);
96 BBTK_DECLARE_OUTPUT(Out,vtkProp3D *);
98 BBTK_PROCESS(DoProcess);
104 BBTK_BEGIN_DESCRIBE_BLACK_BOX(PolyDataToActor,bbtk::AtomicBlackBox);
105 BBTK_NAME("PolyDataToActor");
106 BBTK_AUTHOR("eduardo.davila at creatis.insa-lyon.fr");
107 BBTK_DESCRIPTION("takes a vtkPolyData object to insert into a 3D scene (e.g. a Viewer3D)");
108 typedef std::vector<double> vectorcolour;
109 BBTK_CATEGORY("3D object creator");
110 BBTK_INPUT(PolyDataToActor,In,"Input image",vtkPolyData*,"");
112 BBTK_INPUT(PolyDataToActor,Active,"Active true/false (default true)",bool,"");
113 BBTK_INPUT(PolyDataToActor,Opacity,"Opacity",double,"");
114 BBTK_INPUT(PolyDataToActor,Colour,"r g b",vectorcolour,"colour");
115 BBTK_INPUT(PolyDataToActor,Renderer,"3D scene in which to insert the surface",vtkRenderer*,"");
116 BBTK_INPUT(PolyDataToActor,Transform,"Linear Transform (4x4 homogeneous)",vtkLinearTransform*,"");
117 BBTK_INPUT(PolyDataToActor,Representation,"0 points,1 wireframe, 2(default) surface",int,"");
118 BBTK_INPUT(PolyDataToActor,LineWidth,"Width of the wireframe (1 default)",double,"");
119 BBTK_INPUT(PolyDataToActor,ScalarVisibility,"(false default) a) ScalarVisibility:false use color actor. b) ScalarVisibility:true use PolyData->SetScalars [3-components-RGB] (float 0..1 or int 0..255). c) ScalarVisibility:true and SetLookupTable use PolyData->SetScalars [1-component] d) ScalarVisibility:true and SetLookupTable SelectColorArray(<NameArray>) use PolyData->SetScalars( scalar(<NameArray>) ). e) For c/d SetScalarRange just for the mapper. d) [-1,-1] take PolyData->GetScalarRange()",bool,"");
121 BBTK_INPUT(PolyDataToActor,ScalarVisibilityOn_LookupTable,"LookupTable (need ScalarVisibility true)",vtkScalarsToColors*,"");
122 BBTK_INPUT(PolyDataToActor,ScalarVisibilityOn_NameColorArray,"Name of the array in PolyData (need ScalarVisibility true)",std::string,"");
123 BBTK_INPUT(PolyDataToActor,ScalarVisibilityOn_ScalarRange,"[min,max] Make ScalarRange independent from LookupTable (need ScalarVisibility true)", std::vector<double> ,"");
125 BBTK_OUTPUT(PolyDataToActor,Out,"Extracted iso-surface",vtkProp3D *,"");
127 BBTK_END_DESCRIBE_BLACK_BOX(PolyDataToActor);
129 }// EO namespace bbtk
132 #endif //__PolyDataToActor_h__