]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkTemporalPicker.h
#3489 vtk9itk5wx3-macos
[bbtk.git] / packages / vtk / src / bbvtkTemporalPicker.h
index f41e64252f75ae0d3f99f6dbf25ede0b44b15529..7cd307300b4720a021c48405c054363eee78d3aa 100644 (file)
  # ------------------------------------------------------------------------ */
 
 
-//=====
-// 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)
-//===== 
 #ifndef __bbvtkTemporalPicker_h_INCLUDED__
 #define __bbvtkTemporalPicker_h_INCLUDED__
 #include "bbvtk_EXPORT.h"
 #include "bbtkAtomicBlackBox.h"
 #include "iostream"
 
+#include "vtkVersion.h"
 #include "vtkImageData.h"
 
-
 namespace bbvtk
 {
 
-class bbvtk_EXPORT TemporalPicker
- : 
-   public bbtk::AtomicBlackBox
+class bbvtk_EXPORT TemporalPicker : public bbtk::AtomicBlackBox
 {
   BBTK_BLACK_BOX_INTERFACE(TemporalPicker,bbtk::AtomicBlackBox);
-//===== 
-// 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(InLst,std::vector < vtkImageData*> );
     BBTK_DECLARE_INPUT(SizeRegion,int);
     BBTK_DECLARE_INPUT(Point,std::vector<int>);
        BBTK_DECLARE_OUTPUT(Out,std::vector<double>);
   BBTK_PROCESS(Process);
-  void Process();
-//===== 
-// 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)
-//===== 
+
+       void Process();
+       void Process_TemporaryPicker2DT();
+       void Process_TemporaryPicker3DT();
+
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(TemporalPicker,bbtk::AtomicBlackBox);
@@ -64,14 +58,12 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(TemporalPicker,bbtk::AtomicBlackBox);
        BBTK_AUTHOR("Info-Dev");
        BBTK_DESCRIPTION("Pick vector in Z direction  (2D+t => 3D)");
        BBTK_CATEGORY("");
-       BBTK_INPUT(TemporalPicker,In,"Input image",vtkImageData*,"");
+       BBTK_INPUT(TemporalPicker,In,"In image or InLst images",vtkImageData*,"");
+       BBTK_INPUT(TemporalPicker,InLst,"In image or InLst images",std::vector<vtkImageData*>,"");
        BBTK_INPUT(TemporalPicker,SizeRegion,"Size region (default 1)",int,"");
        BBTK_INPUT(TemporalPicker,Point,"Point [x,y]",std::vector<int>,"");
        BBTK_OUTPUT(TemporalPicker,Out,"Output vector with Z information",std::vector<double>,"");
 BBTK_END_DESCRIBE_BLACK_BOX(TemporalPicker);
-//===== 
-// 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)
-//===== 
 }
 // EO namespace bbvtk