]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageToPlainText.h
8119118a3aad57c0ddeeff410da2c611bfb14240
[bbtk.git] / packages / vtk / src / bbvtkImageToPlainText.h
1 //=====
2 // Don't edit this file. This file is generated from xml description..
3 //=====
4 #ifndef __bbvtkImageToPlainText_h_INCLUDED__
5 #define __bbvtkImageToPlainText_h_INCLUDED__
6 #include "bbvtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 #include "bbtkStaticLecture.h"
11
12 #include <vtkImageData.h>
13 #include <string>
14
15 #include <fstream>
16 #include <sstream>
17
18 namespace bbvtk
19 {
20
21 class bbvtk_EXPORT ImageToPlainText
22  :
23    public bbtk::AtomicBlackBox
24 {
25   BBTK_BLACK_BOX_INTERFACE(ImageToPlainText,bbtk::AtomicBlackBox);
26 //=====
27 // Don't edit this file. This file is generated from xml description..
28 //=====
29   BBTK_DECLARE_INPUT(In,vtkImageData*);
30   BBTK_DECLARE_INPUT(InPath,std::string);
31   BBTK_PROCESS(Process);
32   void Process();
33
34   bbtkStaticLecture lector;
35
36   void ejecutar(std::string path, vtkImageData* image);
37 //=====
38 // Don't edit this file. This file is generated from xml description..
39 //=====
40 };
41
42 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageToPlainText,bbtk::AtomicBlackBox);
43 BBTK_NAME("ImageToPlainText");
44 BBTK_AUTHOR("ed-delga@uniandes.edu.co");
45 BBTK_DESCRIPTION("It will receive a binary image and will save it as a text/plain file.");
46 BBTK_CATEGORY("");
47 BBTK_INPUT(ImageToPlainText,In,"Expected a binary image",vtkImageData*,"");
48 BBTK_INPUT(ImageToPlainText,InPath,"File path where to place the text/plain file",std::string,"");
49 BBTK_END_DESCRIBE_BLACK_BOX(ImageToPlainText);
50 //=====
51 // Don't edit this file. This file is generated from xml description..
52 //=====
53 }
54 // EO namespace bbvtk
55
56 #endif // __bbvtkImageToPlainText_h_INCLUDED__
57