]> Creatis software - bbtk.git/commitdiff
#3513 AddImageTo vector from creaRigidRegistration::PackRecalage to bbtk::vtk
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 22 Mar 2024 14:16:53 +0000 (15:16 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 22 Mar 2024 14:16:53 +0000 (15:16 +0100)
packages/vtk/src/bbvtkAddImageToVector.cxx [new file with mode: 0644]
packages/vtk/src/bbvtkAddImageToVector.h [new file with mode: 0644]

diff --git a/packages/vtk/src/bbvtkAddImageToVector.cxx b/packages/vtk/src/bbvtkAddImageToVector.cxx
new file mode 100644 (file)
index 0000000..450fa0e
--- /dev/null
@@ -0,0 +1,94 @@
+//===== 
+// 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)
+//===== 
+#include "bbvtkAddImageToVector.h"
+#include "bbvtkPackage.h"
+
+namespace bbvtk
+{
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,AddImageToVector)
+BBTK_BLACK_BOX_IMPLEMENTATION(AddImageToVector,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)
+//===== 
+void AddImageToVector::Process()
+{
+
+// THE MAIN PROCESSING METHOD BODY
+//   Here we simply set the input 'In' value to the output 'Out'
+//   And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+//    void bbSet{Input|Output}NAME(const TYPE&)
+//    const TYPE& bbGet{Input|Output}NAME() const 
+//    Where :
+//    * NAME is the name of the input/output
+//      (the one provided in the attribute 'name' of the tag 'input')
+//    * TYPE is the C++ type of the input/output
+//      (the one provided in the attribute 'type' of the tag 'input')
+
+//    bbSetOutputOut( bbGetInputIn() );
+//    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
+   std::vector<vtkImageData*> lstImages=bbGetInputImageVector();
+   if (bbGetInputIn0()!=NULL) { lstImages.push_back( bbGetInputIn0() ); }
+   if (bbGetInputIn1()!=NULL) { lstImages.push_back( bbGetInputIn1() ); }
+   if (bbGetInputIn2()!=NULL) { lstImages.push_back( bbGetInputIn2() ); }
+   if (bbGetInputIn3()!=NULL) { lstImages.push_back( bbGetInputIn3() ); }
+   if (bbGetInputIn4()!=NULL) { lstImages.push_back( bbGetInputIn4() ); }
+   if (bbGetInputIn5()!=NULL) { lstImages.push_back( bbGetInputIn5() ); }
+   if (bbGetInputIn6()!=NULL) { lstImages.push_back( bbGetInputIn6() ); }
+   if (bbGetInputIn7()!=NULL) { lstImages.push_back( bbGetInputIn7() ); }
+   if (bbGetInputIn8()!=NULL) { lstImages.push_back( bbGetInputIn8() ); }
+   if (bbGetInputIn9()!=NULL) { lstImages.push_back( bbGetInputIn9() ); }
+   bbSetOutputOut(lstImages);  
+}
+//===== 
+// 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 AddImageToVector::bbUserSetDefaultValues()
+{
+
+//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
+//    Here we initialize the input 'In' to 0
+   bbSetInputIn0(NULL);
+   bbSetInputIn1(NULL);
+   bbSetInputIn2(NULL);
+   bbSetInputIn3(NULL);
+   bbSetInputIn4(NULL);
+   bbSetInputIn5(NULL);
+   bbSetInputIn6(NULL);
+   bbSetInputIn7(NULL);
+   bbSetInputIn8(NULL);
+   bbSetInputIn9(NULL);
+   std::vector<vtkImageData*> lstImages;
+   bbSetInputImageVector(lstImages);  
+}
+//===== 
+// 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 AddImageToVector::bbUserInitializeProcessing()
+{
+
+//  THE INITIALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should allocate the internal/output pointers 
+//    if any 
+
+  
+}
+//===== 
+// 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 AddImageToVector::bbUserFinalizeProcessing()
+{
+
+//  THE FINALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should desallocate the internal/output pointers 
+//    if any
+  
+}
+}
+// EO namespace bbvtk
+
+
diff --git a/packages/vtk/src/bbvtkAddImageToVector.h b/packages/vtk/src/bbvtkAddImageToVector.h
new file mode 100644 (file)
index 0000000..8f43bea
--- /dev/null
@@ -0,0 +1,67 @@
+//===== 
+// 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 __bbvtkAddImageToVector_h_INCLUDED__
+#define __bbvtkAddImageToVector_h_INCLUDED__
+#include "bbvtk_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+#include "vtkImageData.h"
+
+namespace bbvtk
+{
+
+class bbvtk_EXPORT AddImageToVector
+ : 
+   public bbtk::AtomicBlackBox
+{
+  BBTK_BLACK_BOX_INTERFACE(AddImageToVector,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(ImageVector,std::vector<vtkImageData*>);
+  BBTK_DECLARE_INPUT(In0,vtkImageData*);
+  BBTK_DECLARE_INPUT(In1,vtkImageData*);
+  BBTK_DECLARE_INPUT(In2,vtkImageData*);
+  BBTK_DECLARE_INPUT(In3,vtkImageData*);
+  BBTK_DECLARE_INPUT(In4,vtkImageData*);
+  BBTK_DECLARE_INPUT(In5,vtkImageData*);
+  BBTK_DECLARE_INPUT(In6,vtkImageData*);
+  BBTK_DECLARE_INPUT(In7,vtkImageData*);
+  BBTK_DECLARE_INPUT(In8,vtkImageData*);
+  BBTK_DECLARE_INPUT(In9,vtkImageData*);
+  BBTK_DECLARE_OUTPUT(Out,std::vector<vtkImageData*>);
+  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)
+//===== 
+};
+
+BBTK_BEGIN_DESCRIBE_BLACK_BOX(AddImageToVector,bbtk::AtomicBlackBox);
+BBTK_NAME("AddImageToVector");
+BBTK_AUTHOR("Info-Dev");
+BBTK_DESCRIPTION("eduardo.davila@creatis.insa-lyon.fr - Concat at the end of the ImageVector all the inputs. Add vtkImageData* to a vector fo vtkImageData*");
+BBTK_CATEGORY("void");
+BBTK_INPUT(AddImageToVector,ImageVector,"Vector of vtkImagesData*",std::vector<vtkImageData*>,"");
+BBTK_INPUT(AddImageToVector,In0,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In1,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In2,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In3,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In4,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In5,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In6,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In7,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In8,"Input image 1",vtkImageData*,"");
+BBTK_INPUT(AddImageToVector,In9,"Input image 1",vtkImageData*,"");
+BBTK_OUTPUT(AddImageToVector,Out,"Vector of vtkImageData*",std::vector<vtkImageData*>,"");
+BBTK_END_DESCRIBE_BLACK_BOX(AddImageToVector);
+//===== 
+// 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
+
+#endif // __bbvtkAddImageToVector_h_INCLUDED__
+