]> Creatis software - creaVtk.git/commitdiff
2178 creaVtk Bug New High Error in creaVtkFromVtk4DToItk4 box output.
authorctorres <carlos.torres@creatis.insa-lyon.fr>
Wed, 20 Nov 2013 15:06:30 +0000 (16:06 +0100)
committerctorres <carlos.torres@creatis.insa-lyon.fr>
Wed, 20 Nov 2013 15:06:30 +0000 (16:06 +0100)
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.cxx
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.cxx~
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h~

index fb20c3055c9a950a03684b83710a79c55b39498c..4a79770af6c49d674d9a12b197d409e644969255 100644 (file)
@@ -18,7 +18,8 @@ void FromVtk4DToItk4D::Process()
 {
                creaVtkFromVtk4DToItk4D<vtkImageData*> prs;
                prs.SetImage4Dvtk(bbGetInputIn());
-               bbSetOutputOut(prs.Process());
+               //Bug. Cant declare output image in .h
+               //bbSetOutputOut(prs.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)
index c85c4ebf838078e9c43c9d6eb5d2d489210945de..f322be76993511710cf0d2840308d94c64555a48 100644 (file)
@@ -18,18 +18,13 @@ void FromVtk4DToItk4D::Process()
 {
                creaVtkFromVtk4DToItk4D<vtkImageData*> prs;
                prs.SetImage4Dvtk(bbGetInputIn());
-               bbSetOutputOut(prs.Process());
+               //bbSetOutputOut(prs.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 FromVtk4DToItk4D::bbUserSetDefaultValues()
 {
-
-//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
-//    Here we initialize the input 'In' to 0
-   bbSetInputIn(0);
-  
 }
 //===== 
 // 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)
index 5ea20bbd78623cfa37926942eaac76489677b9f1..7ff303cec6c097d7550a63df0beadbeb6687d7c6 100644 (file)
@@ -18,16 +18,13 @@ class bbcreaVtk_EXPORT FromVtk4DToItk4D
    public bbtk::AtomicBlackBox
 {
   BBTK_BLACK_BOX_INTERFACE(FromVtk4DToItk4D,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,std::vector<vtkImageData*> );
-  BBTK_DECLARE_OUTPUT(Out,std::vector<itk::Image< unsigned char > >);
+       //Bug. Image type doesn't work.
+  //BBTK_DECLARE_OUTPUT(Out,std::vector<itk::Image< unsigned char > >);
   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(FromVtk4DToItk4D,bbtk::AtomicBlackBox);
@@ -36,11 +33,9 @@ BBTK_AUTHOR("Carlos Torres");
 BBTK_DESCRIPTION("carlos.torres@creatis.insa-lyon.fr -");
 BBTK_CATEGORY("empty");
 BBTK_INPUT(FromVtk4DToItk4D,In,"Vtk image 4D",std::vector<vtkImageData*>,"");
-BBTK_OUTPUT(FromVtk4DToItk4D,Out,"Itk image 4D",std::vector<itk::Image< unsigned char > >,"");
+//BBTK_OUTPUT(FromVtk4DToItk4D,Out,"Itk image 4D",std::vector<itk::Image< unsigned char > >,"");
 BBTK_END_DESCRIBE_BLACK_BOX(FromVtk4DToItk4D);
-//===== 
-// 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 bbcreaVtk
 
index 399a00754a096fe175838597b18c16246091f84a..584e159a10488f86240a5277e7e3dad0c17581de 100644 (file)
@@ -6,6 +6,9 @@
 #include "bbcreaVtk_EXPORT.h"
 #include "bbtkAtomicBlackBox.h"
 #include "iostream"
+#include "vtkImageData.h"
+#include <vector>
+#include "itkImage.h"
 
 namespace bbcreaVtk
 {
@@ -15,16 +18,12 @@ class bbcreaVtk_EXPORT FromVtk4DToItk4D
    public bbtk::AtomicBlackBox
 {
   BBTK_BLACK_BOX_INTERFACE(FromVtk4DToItk4D,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,std::vector<vtkImageData*> );
-  BBTK_DECLARE_OUTPUT(Out,std::vector<itk::Image< unsigned char > >);
+  //BBTK_DECLARE_OUTPUT(Out,std::vector<itk::Image< unsigned char > >);
   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(FromVtk4DToItk4D,bbtk::AtomicBlackBox);
@@ -33,11 +32,9 @@ BBTK_AUTHOR("Carlos Torres");
 BBTK_DESCRIPTION("carlos.torres@creatis.insa-lyon.fr -");
 BBTK_CATEGORY("empty");
 BBTK_INPUT(FromVtk4DToItk4D,In,"Vtk image 4D",std::vector<vtkImageData*>,"");
-BBTK_OUTPUT(FromVtk4DToItk4D,Out,"Itk image 4D",std::vector<itk::Image< unsigned char > >,"");
+//BBTK_OUTPUT(FromVtk4DToItk4D,Out,"Itk image 4D",std::vector<itk::Image< unsigned char > >,"");
 BBTK_END_DESCRIBE_BLACK_BOX(FromVtk4DToItk4D);
-//===== 
-// 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 bbcreaVtk