ExtDopplerOp.h
1 
22 /*
23  * ExtDopplerOp.h
24  *
25  * Created on: Mar 7, 2011
26  * Author: Joonas Karjalainen
27  */
28 
29 #ifndef ExtDopplerOP_H_
30 #define ExtDopplerOP_H_
31 
32 #include "product/DopplerOp.h"
33 
34 namespace rack {
35 
36 
38 
41 class ExtDopplerOp : public DopplerOp {
42 public:
43 
44  ExtDopplerOp() : DopplerOp("ExtDopplerOp","Kuvaus..."){ //,"width=123,height=436,depth=789"){
45  link("width", width, 123);
46  link("height",height, 456);
47  link("depth", depth, 789);
48  //setParameters(parameters);
49  };
50 
51  int width;
52  int height;
53  int depth;
54 
55 protected:
56 
57 
58  inline
59  virtual
60  void filterImage(const drain::image::Image &src, drain::image::Image & dst){
61 
62  };
63 
64 
65 };
66 
67 
68 } // namespace rack
69 
70 
71 #endif /* RACKOP_H_ */
Class for multi-channel digital images. Supports dynamic typing with base types (char,...
Definition: Image.h:184
Base class for computing products using Doppler speed [VRAD] data.
Definition: DopplerOp.h:49
Base class for radar data processors.
Definition: ExtDopplerOp.h:41
Definition: DataSelector.cpp:44