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