]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMarchingCubes.h
*** empty log message ***
[bbtk.git] / packages / vtk / src / bbvtkMarchingCubes.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbvtkMarchingCubes.h,v $
5   Language:  C++
6   Date:      $Date: 2008/05/06 07:36:42 $
7   Version:   $Revision: 1.4 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*//**
18  * \brief Short description in one line
19  * 
20  * Long description which 
21  * can span multiple lines
22  */
23 /**
24  * \file 
25  * \brief Pattern for the definition of a new type of Node (header)
26  */
27 /**
28  * \class bbtk::NodePatern 
29  * \brief Pattern for the definition of a new type of Node 
30  */
31
32
33 #ifdef _USE_VTK_
34
35 #ifndef __bbvtkMarchingCubes_h_INCLUDED__
36 #define __bbvtkMarchingCubes_h_INCLUDED__
37
38
39 #include "bbtkAtomicBlackBox.h"
40 #include "vtkMarchingCubes.h"
41 #include "vtkImageData.h"
42
43 namespace bbvtk
44 {
45
46    //=======================================================================
47   class /*BBTK_EXPORT*/ MarchingCubes
48     : 
49     public bbtk::AtomicBlackBox,
50     public vtkMarchingCubes
51   {
52     BBTK_BLACK_BOX_INTERFACE(MarchingCubes,bbtk::AtomicBlackBox);
53     
54     BBTK_DECLARE_VTK_INPUT(vtkMarchingCubes,In,vtkImageData *);
55     BBTK_DECLARE_VTK_OUTPUT(vtkMarchingCubes,Out,vtkPolyData *);
56
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); }
65
66     
67     BBTK_PROCESS(DoProcess);
68     void DoProcess() { vtkMarchingCubes::Update(); }
69
70     // Overload bbDelete to handle vtk reference counting
71     BBTK_VTK_DELETE(vtkMarchingCubes);
72     //void bbDelete() { Delete(); }
73   };
74   //=======================================================================
75   
76   //=======================================================================
77   BBTK_BEGIN_DESCRIBE_BLACK_BOX(MarchingCubes,bbtk::AtomicBlackBox);
78   BBTK_NAME("MarchingCubes");
79   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
80   BBTK_DESCRIPTION("Extracts an iso-surface of an image using the marching cubes algorithm (bbfication of vtkMarchingCubes)");
81   BBTK_CATEGORY("image;mesh");
82
83   BBTK_INPUT(MarchingCubes,In,"Image",vtkImageData*,"");
84   BBTK_INPUT(MarchingCubes,Value,"Value of the iso-surface",double,"");
85   BBTK_OUTPUT(MarchingCubes,Out,"Output iso-surface",vtkPolyData*,"");
86   
87   BBTK_END_DESCRIBE_BLACK_BOX(MarchingCubes);
88   //=======================================================================
89
90 }// EO namespace bbvtk
91
92
93 #endif  //__bbvtkMarchingCubes_h_INCLUDED__
94
95 #endif //_USE_VTK_
96