]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkUnMosaicVectorVtkImageData.h
#3110 creaVtk Bug New Normal - branch vtk7itk4 compilation with vtk7
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkUnMosaicVectorVtkImageData.h
1 #ifndef __bbcreaVtkUnMosaicVectorVtkImageData_h_INCLUDED__
2 #define __bbcreaVtkUnMosaicVectorVtkImageData_h_INCLUDED__
3 #include "bbcreaVtk_EXPORT.h"
4 #include "bbtkAtomicBlackBox.h"
5 #include "iostream"
6
7 #include "vtkImageData.h"
8 namespace bbcreaVtk
9 {
10
11 class bbcreaVtk_EXPORT UnMosaicVectorVtkImageData
12  : 
13    public bbtk::AtomicBlackBox
14 {
15   BBTK_BLACK_BOX_INTERFACE(UnMosaicVectorVtkImageData,bbtk::AtomicBlackBox);
16 //===== 
17 // 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)
18 //===== 
19   BBTK_DECLARE_INPUT(In,std::vector<vtkImageData*>);
20   BBTK_DECLARE_INPUT (NbImagesInMosaicVector,std::vector<int>);
21   BBTK_DECLARE_OUTPUT(Out,std::vector<vtkImageData*>);
22   BBTK_PROCESS(Process);
23   void Process();
24 //===== 
25 // 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)
26 //===== 
27 };
28
29 BBTK_BEGIN_DESCRIBE_BLACK_BOX(UnMosaicVectorVtkImageData,bbtk::AtomicBlackBox);
30   BBTK_NAME("UnMosaicVectorVtkImageData");
31   BBTK_AUTHOR("carlos torres");
32   BBTK_DESCRIPTION("No Description.");
33   BBTK_CATEGORY("empty");
34
35   BBTK_INPUT(UnMosaicVectorVtkImageData,In,"2D image list",std::vector<vtkImageData*>,"");
36   BBTK_INPUT(UnMosaicVectorVtkImageData,NbImagesInMosaicVector,"Vector of Number of Images In Mosaic ",std::vector<int>,"");
37
38   BBTK_OUTPUT(UnMosaicVectorVtkImageData,Out,"3D image Vector",std::vector<vtkImageData*>,"");
39 BBTK_END_DESCRIBE_BLACK_BOX(UnMosaicVectorVtkImageData);
40 //===== 
41 // 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)
42 //===== 
43 }
44 // EO namespace bbcreaVtk
45
46 #endif // __bbcreaVtkUnMosaicVectorVtkImageData_h_INCLUDED__
47