X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk_creaVtk_PKG%2Fsrc%2FbbcreaVtkImageThresholdConnectivity.h;h=8f53fc4e20f73e143e64eccd4417ce6a7b7d106d;hb=e3ed15fb6292544d9440bfad4e39dc6c74824f51;hp=a629e1c407c1a11793830f4af4731e358ad5371c;hpb=b684dcec05f633447cda0247d81ba730f14b5617;p=creaVtk.git diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.h b/bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.h index a629e1c..8f53fc4 100644 --- a/bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.h +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.h @@ -23,9 +23,17 @@ class bbcreaVtk_EXPORT ImageThresholdConnectivity // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== BBTK_DECLARE_INPUT(In,vtkImageData*); + BBTK_DECLARE_INPUT(Point,std::vector); + BBTK_DECLARE_INPUT(LstX,std::vector); + BBTK_DECLARE_INPUT(LstY,std::vector); + BBTK_DECLARE_INPUT(LstZ,std::vector); + BBTK_DECLARE_INPUT(Threshold,std::vector); + BBTK_DECLARE_INPUT(MaskValue,std::vector); + BBTK_DECLARE_INPUT(Border,int); BBTK_DECLARE_OUTPUT(Out,vtkImageData*); BBTK_PROCESS(Process); void Process(); + vtkImageThresholdConnectivity *filter; //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== @@ -38,6 +46,13 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageThresholdConnectivity,bbtk::AtomicBlackBox); BBTK_CATEGORY("empty"); BBTK_INPUT(ImageThresholdConnectivity,In,"Input image",vtkImageData*,""); + BBTK_INPUT(ImageThresholdConnectivity,Point,"[x y z] seed point",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,LstX,"LstX seeds in voxels",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,LstY,"LstY seeds in voxels",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,LstZ,"LstZ seeds in voxels",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,MaskValue,"( default [O 255] ) [Out In] values of the output mask",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,Threshold,"( default [O 100] ) [down upper] threshold to be segmented",std::vector,""); + BBTK_INPUT(ImageThresholdConnectivity,Border,"(default 10)Border of the min and max positions",int,""); BBTK_OUTPUT(ImageThresholdConnectivity,Out,"Output image",vtkImageData*,"");