00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef HxNJetData_h
00014 #define HxNJetData_h
00015
00016 #include "HxImageRep.h"
00017 #include <vector>
00018
00019
00020 class HxNJetData : public HxRcObject {
00021
00022 public:
00023 HxNJetData();
00024
00025 virtual ~HxNJetData();
00026
00027 int ident() const;
00028
00029 int nrComponents() const;
00030 int isColor() const;
00031
00032 HxImageRep getL(int nr) const;
00033 HxImageRep getJ(int nr) const;
00034 HxImageRep getM(int nr) const;
00035
00036 HxImageRep getLw();
00037 HxImageRep getJw();
00038 HxImageRep getMw();
00039
00040 void rotate(double phi);
00041 void rotate(HxImageRep phi);
00042 void resample(double fac);
00043 void truncate(int order);
00044 void normalize(double scale);
00045
00046
00047 void addL(HxImageRep im);
00048 void addJ(HxImageRep im);
00049 void addM(HxImageRep im);
00050
00051 private:
00052 static int _nr;
00053 int _ident;
00054 std::vector<HxImageRep> _Ljet;
00055 std::vector<HxImageRep> _Jjet;
00056 std::vector<HxImageRep> _Mjet;
00057 HxImageRep _Lw, _Jw, _Mw;
00058 };
00059
00060 #endif