Isis 3 Programmer Reference
AdjustedLatitudeFilter.h
1#ifndef AdjustedLatitudeFilter_H
2#define AdjustedLatitudeFilter_H
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractNumberFilter.h"
13
14template< typename U, typename V > struct QPair;
15class QString;
16
17namespace Isis {
18 class AbstractFilterSelector;
19 class ControlMeasure;
20 class ControlPoint;
21
40 Q_OBJECT
41
42 public:
43 AdjustedLatitudeFilter(AbstractFilter::FilterEffectivenessFlag flag,
44 int minimumForSuccess = -1);
47
48 bool evaluate(const QPair<QString, ControlNet *> *) const;
49 bool evaluate(const ControlPoint *) const;
50 bool evaluate(const ControlMeasure *) const;
51
52 AbstractFilter *clone() const;
53
54 QString getImageDescription() const;
55 QString getPointDescription() const;
56 };
57}
58
59#endif
Base class for control net filters.
Base class for filters that are number-based.
Allows filtering by adjusted surface point latitude.
a control measurement
A single control point.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
This is free and unencumbered software released into the public domain.