/*========================================================================= Program: bbtk Module: $RCSfile: bbvtkIsoSurfaceExtractor.h,v $ Language: C++ Date: $Date: 2008/03/03 14:01:49 $ Version: $Revision: 1.1 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*//** * \brief Short description in one line * * Long description which * can span multiple lines */ /** * \file * \brief Pattern for the definition of a new type of Node (header) */ /** * \class bbtk::NodePatern * \brief Pattern for the definition of a new type of Node */ #ifdef _USE_VTK_ #ifndef __vtkIsoSurfaceInserter_h__ #define __vtkIsoSurfaceInserter_h__ #include "vtkImageData.h" #include "vtkRenderer.h" #include "vtkMarchingCubes.h" #include "vtkPolyDataMapper.h" #include "vtkProp3D.h" #include "vtkActor.h" #include #include "bbtkAtomicBlackBox.h" namespace bbvtk { class /*BBTK_EXPORT*/ IsoSurfaceInserter : public bbtk::AtomicBlackBox { bool firsttime; vtkMarchingCubes *marchingcubes; vtkPolyDataMapper *polydatamapper; vtkActor *vtkactor; BBTK_USER_BLACK_BOX_INTERFACE(IsoSurfaceInserter,bbtk::AtomicBlackBox); BBTK_DECLARE_INPUT(In,vtkImageData *); BBTK_DECLARE_INPUT(InVtkObject,vtkObject *); BBTK_DECLARE_INPUT(Isovalue,double); BBTK_DECLARE_INPUT(Opacity,double); BBTK_DECLARE_INPUT(Colour,std::vector); BBTK_DECLARE_INPUT(Renderer,vtkRenderer *); BBTK_DECLARE_OUTPUT(Out,vtkProp3D *); BBTK_PROCESS(DoProcess); void DoProcess(); protected: virtual void bbUserConstructor(); virtual void bbUserCopyConstructor(); void Init(); }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(IsoSurfaceInserter,bbtk::AtomicBlackBox); BBTK_NAME("IsoSurfaceInserter"); BBTK_AUTHOR("eduardo.davila / laurent.guigues at creatis.insa-lyon.fr"); BBTK_DESCRIPTION("Extracts an iso-surface of a 3D image and insert it into a 3D scene (vtkRenderer)"); typedef std::vector vectorcolour; BBTK_INPUT(IsoSurfaceInserter,In,"Input image",vtkImageData*); BBTK_INPUT(IsoSurfaceInserter,InVtkObject,"Image vtkObject",vtkObject*); BBTK_INPUT(IsoSurfaceInserter,Isovalue,"Isovalue",double); BBTK_INPUT(IsoSurfaceInserter,Opacity,"Opacity",double); BBTK_INPUT(IsoSurfaceInserter,Colour,"r g b",vectorcolour); BBTK_INPUT(IsoSurfaceInserter,Renderer,"3D scene in which to insert the surface",vtkRenderer*); BBTK_OUTPUT(IsoSurfaceInserter,Out,"Image",vtkProp3D *); BBTK_END_DESCRIBE_BLACK_BOX(IsoSurfaceInserter); }// EO namespace bbtk #endif //__IsoSurfaceInserter_h__ #endif //_USE_VTK_