USGS

Isis 3.0 Developer's Reference (API)

Home

VecFilter.h
Go to the documentation of this file.
1 #ifndef VecFilter_h
2 #define VecFilter_h
3 
23 #include <vector>
24 #include <QString>
25 
26 namespace Isis {
44  class VecFilter {
45  public:
46  VecFilter();
47  ~VecFilter();
48 
49  std::vector<double> LowPass(std::vector<double> invec, int boxsize);
50  std::vector<double> HighPass(std::vector<double> invec1, std::vector<double> invec2);
51  std::vector<double> HighPass(std::vector<double> pdInVector1, std::vector<double> pdInVector2,
52  std::vector<int> piValidPntsVector, int piMaxPoints, const QString & psMode="SUBTRACT");
53 
54  private:
55  };
56 } // end namespace isis
57 
58 #endif
59