]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkUnMosaicVectorVtkImageData.h
2319 creaVtk Feature New Normal Change in box and lib UnMosaicVectorVtkImageData...
[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 BBTK_INPUT(UnMosaicVectorVtkImageData,In,"2D image list",std::vector<vtkImageData*>,"");
35 BBTK_INPUT(UnMosaicVectorVtkImageData,NbImagesInMosaicVector,"Vector of Number of Images In Mosaic ",std::vector<int>,"");
36 BBTK_OUTPUT(UnMosaicVectorVtkImageData,Out,"3D image Vector",std::vector<vtkImageData*>,"");
37 BBTK_END_DESCRIBE_BLACK_BOX(UnMosaicVectorVtkImageData);
38 //===== 
39 // 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)
40 //===== 
41 }
42 // EO namespace bbcreaVtk
43
44 #endif // __bbcreaVtkUnMosaicVectorVtkImageData_h_INCLUDED__
45