Isis 3 Programmer Reference
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 
This class is used to perform filter operations on vectors.
Definition: VecFilter.h:44
~VecFilter()
Destroys the VecFilter object.
Definition: VecFilter.cpp:35
VecFilter()
Constructs a VecFilter object.
Definition: VecFilter.cpp:32
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
std::vector< double > LowPass(std::vector< double > invec, int boxsize)
Perform a lowpass filter on an input vector.
Definition: VecFilter.cpp:48