]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkUnMosaicVectorVtkImageData.h
2187 BBTK Feature New Normal New feature creaVtk
[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 (NbImagesPerRow,int);
21   BBTK_DECLARE_INPUT (NbImagesInMosaic,int);
22   BBTK_DECLARE_OUTPUT(Out,std::vector<vtkImageData*>);
23   BBTK_PROCESS(Process);
24   void Process();
25 //===== 
26 // 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)
27 //===== 
28 };
29
30 BBTK_BEGIN_DESCRIBE_BLACK_BOX(UnMosaicVectorVtkImageData,bbtk::AtomicBlackBox);
31 BBTK_NAME("UnMosaicVectorVtkImageData");
32 BBTK_AUTHOR("carlos torres");
33 BBTK_DESCRIPTION("No Description.");
34 BBTK_CATEGORY("empty");
35 BBTK_INPUT(UnMosaicVectorVtkImageData,In,"2D image list",std::vector<vtkImageData*>,"");
36 BBTK_INPUT(UnMosaicVectorVtkImageData,NbImagesPerRow,"Nb of Images Per Row ",int,"");
37 BBTK_INPUT(UnMosaicVectorVtkImageData,NbImagesInMosaic,"Nb of Images In Mosaic ",int,"");
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