00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef DOWNSCALE_H
00012 #define DOWNSCALE_H
00013
00014 #include "yapi.h"
00015 #include "vya.h"
00016
00017 class DownScale : public Process
00018 {
00019 public:
00020
00021 DownScale(
00022 const Id& n,
00023 In<VYApixel>& cin,
00024 Out<VYApixel>& cout
00025 );
00026
00027
00028 const char* type() const { return "DownScale"; }
00029
00030
00031 void main();
00032
00033 private:
00034
00035 InPort<VYApixel> Cin;
00036
00037
00038 OutPort<VYApixel> Cout;
00039 };
00040
00041 #endif