Isis 3 Programmer Reference
GradientOperator.h
Go to the documentation of this file.
1 #ifndef GradientOperator_h
2 #define GradientOperator_h
3 
26 #include "InterestOperator.h"
27 
28 namespace Isis {
29  class Pvl;
30  class Chip;
31 
48  public:
49  GradientOperator(Pvl &pPvl) : InterestOperator(pPvl) {};
50  virtual ~GradientOperator() {};
51 
52  protected:
53  virtual double Interest(Chip &chip);
54  };
55 };
56 
57 #endif
InterestOperator(Pvl &pPvl)
Create InterestOperator object.
A small chip of data used for pattern matching.
Definition: Chip.h:102
Interest Operator class.
virtual double Interest(Chip &chip)
This method returns the amount of interest for the given chip.
Container for cube-like labels.
Definition: Pvl.h:135
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Gradient interest operator.