File failed to load: https://isis.astrogeology.usgs.gov/9.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
StandardDeviationOperator.h
1#ifndef StandardDeviationOperator_h
2#define StandardDeviationOperator_h
7
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include "InterestOperator.h"
11
12namespace Isis {
13 class Pvl;
14 class Chip;
15
37 class StandardDeviationOperator : public InterestOperator {
38 public:
39 StandardDeviationOperator(Pvl &pPvl) : InterestOperator(pPvl) {
40 p_worstInterest = 0.0;
41 };
42 virtual ~StandardDeviationOperator() {};
43
44 protected:
45 virtual double Interest(Chip &chip);
46 };
47};
48
49#endif
A small chip of data used for pattern matching.
Definition Chip.h:86
InterestOperator(Pvl &pPvl)
Create InterestOperator object.
Container for cube-like labels.
Definition Pvl.h:119
virtual double Interest(Chip &chip)
This method returns the amount of interest for the given chip.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16