]> Creatis software - creaRigidRegistration.git/commitdiff
2028 Feature Create the box AddImageToVector
authorEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Thu, 6 Jun 2013 06:10:24 +0000 (08:10 +0200)
committerEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Thu, 6 Jun 2013 06:10:24 +0000 (08:10 +0200)
PackRecalage/src/bbPackRecalageAddImageToVector.cxx [new file with mode: 0644]
PackRecalage/src/bbPackRecalageAddImageToVector.h [new file with mode: 0644]

diff --git a/PackRecalage/src/bbPackRecalageAddImageToVector.cxx b/PackRecalage/src/bbPackRecalageAddImageToVector.cxx
new file mode 100644 (file)
index 0000000..3ad1c5f
--- /dev/null
@@ -0,0 +1,96 @@
+//===== 
+// 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 "bbPackRecalageAddImageToVector.h"
+#include "bbPackRecalagePackage.h"
+namespace bbPackRecalage
+{
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage,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();
+   lstImages.push_back( bbGetInputIn0() );
+   lstImages.push_back( bbGetInputIn1() );
+   lstImages.push_back( bbGetInputIn2() );
+   lstImages.push_back( bbGetInputIn3() );
+   lstImages.push_back( bbGetInputIn4() );
+   lstImages.push_back( bbGetInputIn5() );
+   lstImages.push_back( bbGetInputIn6() );
+   lstImages.push_back( bbGetInputIn7() );
+   lstImages.push_back( bbGetInputIn8() );
+   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 bbPackRecalage
+
+
diff --git a/PackRecalage/src/bbPackRecalageAddImageToVector.h b/PackRecalage/src/bbPackRecalageAddImageToVector.h
new file mode 100644 (file)
index 0000000..88f826b
--- /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 __bbPackRecalageAddImageToVector_h_INCLUDED__
+#define __bbPackRecalageAddImageToVector_h_INCLUDED__
+#include "bbPackRecalage_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+#include "vtkImageData.h"
+
+namespace bbPackRecalage
+{
+
+class bbPackRecalage_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 bbPackRecalage
+
+#endif // __bbPackRecalageAddImageToVector_h_INCLUDED__
+