]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkBinaryOperations.h
54c642e37db44037c01223e92a8d39a4aeb9be2b
[bbtk.git] / packages / vtk / src / bbvtkBinaryOperations.h
1 #ifndef __bbvtkBinaryOperations_h_INCLUDED__
2 #define __bbvtkBinaryOperations_h_INCLUDED__
3 #include "bbvtk_EXPORT.h"
4 #include "bbtkAtomicBlackBox.h"
5 #include "iostream"
6 #include "bbtkStaticLecture.h"
7
8
9 #include <vtkImageMathematics.h>
10 #include <vtkImageData.h>
11 #include <vtkType.h>
12 #include <vtkImageData.h>
13
14
15 namespace bbvtk
16 {
17
18
19
20 class bbvtk_EXPORT BinaryOperations
21  :
22    public bbtk::AtomicBlackBox
23 {
24   BBTK_BLACK_BOX_INTERFACE(BinaryOperations,bbtk::AtomicBlackBox);
25   BBTK_DECLARE_INPUT(In1,vtkImageData*);
26   BBTK_DECLARE_INPUT(In2,vtkImageData*);
27   BBTK_DECLARE_INPUT(Operation,int);
28   BBTK_DECLARE_INPUT(InConstant,double);
29   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
30   BBTK_PROCESS(Process);
31   void Process();
32
33   void crearPredeterminado();
34   void substractWithMinimum();
35   void MultiplyBy();
36
37   bbtkStaticLecture lector;
38
39   vtkImageMathematics* ope;
40   vtkImageData* constante;
41 };
42
43 BBTK_BEGIN_DESCRIBE_BLACK_BOX(BinaryOperations,bbtk::AtomicBlackBox);
44 BBTK_NAME("BinaryOperations");
45 BBTK_AUTHOR("_author_");
46 BBTK_DESCRIPTION("_description_");
47 BBTK_CATEGORY("__CATEGORY__");
48 BBTK_INPUT(BinaryOperations,In1,"",vtkImageData*,"");
49 BBTK_INPUT(BinaryOperations,In2,"",vtkImageData*,"");
50 BBTK_INPUT(BinaryOperations,Operation,"0:Add, 1:subtract, 2:multiply, 3:divide",int,"");
51 BBTK_OUTPUT(BinaryOperations,Out,"",vtkImageData*,"");
52 BBTK_END_DESCRIBE_BLACK_BOX(BinaryOperations);
53 }
54 // EO namespace bbSimpleProcessing
55
56 #endif // __bbvtkBinaryOperations_h_INCLUDED__
57
58