X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkMarchingCubes.h;h=c94d76ff242f263e797cd11d5692d39bdf9caf5b;hb=dfcd0b84f01eb96e43c2180a35d626cc123a7231;hp=6d4245604785f670c79d4a92763bb4eb3b767e0a;hpb=427d8c0ac838ab789a57b28f62a7f9ff243e7b60;p=bbtk.git diff --git a/packages/vtk/src/bbvtkMarchingCubes.h b/packages/vtk/src/bbvtkMarchingCubes.h index 6d42456..c94d76f 100644 --- a/packages/vtk/src/bbvtkMarchingCubes.h +++ b/packages/vtk/src/bbvtkMarchingCubes.h @@ -56,6 +56,8 @@ #include "bbtkAtomicBlackBox.h" +#include "vtkVersion.h" + #include "bbtkVtkBlackBoxMacros.h" #include "vtkMarchingCubes.h" #include "vtkImageData.h" @@ -98,7 +100,6 @@ namespace bbvtk } */ - // BBTK_VTK_PROCESS(); BBTK_PROCESS(Process); void Process(); @@ -110,12 +111,12 @@ namespace bbvtk BBTK_BEGIN_DESCRIBE_BLACK_BOX(MarchingCubes,bbtk::AtomicBlackBox); BBTK_NAME("MarchingCubes"); BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr"); - BBTK_DESCRIPTION("Extracts an iso-surface of an image using the marching cubes algorithm (bbfication of vtkMarchingCubes)"); + BBTK_DESCRIPTION("Extracts an iso-surface of an image using the marching cubes algorithm (bbfication of vtkMarchingCubes) (C++,Python)"); BBTK_CATEGORY("image;mesh"); BBTK_INPUT(MarchingCubes,Active,"Active true/false (default true)",bool,""); BBTK_INPUT(MarchingCubes,In,"Image",vtkImageData*,""); - BBTK_INPUT(MarchingCubes,Value,"Value of the iso-surface",double,""); + BBTK_INPUT(MarchingCubes,Value,"(default 400) Value of the iso-surface",double,""); BBTK_INPUT(MarchingCubes,ComputeNormalsOn,"Set the computation of normals",bool,""); BBTK_INPUT(MarchingCubes,ComputeScalarsOn,"Set the computation of scalars",bool,""); BBTK_OUTPUT(MarchingCubes,Out,"Output iso-surface",vtkPolyData*,"");