1 /*=========================================================================
4 Module: $RCSfile: bbvtkMarchingCubes.h,v $
6 Date: $Date: 2008/02/13 08:21:38 $
7 Version: $Revision: 1.1 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*//**
18 * \brief Short description in one line
20 * Long description which
21 * can span multiple lines
25 * \brief Pattern for the definition of a new type of Node (header)
28 * \class bbtk::NodePatern
29 * \brief Pattern for the definition of a new type of Node
35 #ifndef __bbvtkMarchingCubes_h_INCLUDED__
36 #define __bbvtkMarchingCubes_h_INCLUDED__
39 #include "bbtkAtomicBlackBox.h"
40 #include "vtkMarchingCubes.h"
41 #include "vtkImageData.h"
46 //=======================================================================
47 class /*BBTK_EXPORT*/ MarchingCubes
49 public bbtk::AtomicBlackBox,
50 public vtkMarchingCubes
52 BBTK_USER_BLACK_BOX_INTERFACE(MarchingCubes,bbtk::AtomicBlackBox);
54 BBTK_DECLARE_VTK_INPUT(vtkMarchingCubes,In,vtkImageData *);
55 BBTK_DECLARE_VTK_OUTPUT(vtkMarchingCubes,Out,vtkPolyData *);
57 // For the 'Value' parameter, the standard bbtk macro does not work
58 // as vtk Get/Set accessors have a parameter...
59 // BBTK_DECLARE_VTK_PARAM(vtkMarchingCubes,Value,double);
60 // Hence have to wrap the accessors "by hand" :
61 double bbGetInputValue ()
62 { return vtkMarchingCubes::GetValue(0); }
63 void bbSetInputValue (double d)
64 { vtkMarchingCubes::SetValue(0,d); }
67 BBTK_PROCESS(DoProcess);
68 void DoProcess() { vtkMarchingCubes::Update(); }
70 // Overload bbDelete to handle vtk reference counting
71 void bbDelete() { Delete(); }
73 //=======================================================================
75 //=======================================================================
76 BBTK_BEGIN_DESCRIBE_BLACK_BOX(MarchingCubes,bbtk::AtomicBlackBox);
77 BBTK_NAME("MarchingCubes");
78 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
79 BBTK_DESCRIPTION("Extracts an iso-surface of an image using the marching cubes algorithm (bbfication of vtkMarchingCubes)");
80 BBTK_CATEGORY("image;mesh");
82 BBTK_INPUT(MarchingCubes,In,"Image",vtkImageData*);
83 BBTK_INPUT(MarchingCubes,Value,"Value of the iso-surface",double);
84 BBTK_OUTPUT(MarchingCubes,Out,"Output iso-surface",vtkPolyData*);
86 BBTK_END_DESCRIBE_BLACK_BOX(MarchingCubes);
87 //=======================================================================
89 }// EO namespace bbvtk
92 #endif //__bbvtkMarchingCubes_h_INCLUDED__