31#ifndef ANDRE_TEST_OP_H_
32#define ANDRE_TEST_OP_H_
35#include "DetectorOp.h"
55 TestOp(
double value=0.0,
double prob=1.0) :
56 DetectorOp(__FUNCTION__,
"Create rectangular fake anomaly (value) and 'detect' it with desired probability (prob).",
"nonmet.clutter"){
63 parameters.link(
"value", this->value = value,
"value");
64 parameters.link(
"prob", this->prob = prob,
"prob");
66 parameters.link(
"i", this->iRange.tuple() = {200,230},
"coord range");
67 parameters.link(
"j", this->jRange.tuple() = {240,300},
"coord range");
void setQuantities(const std::string &s)
Sets basic quantities and quality quantities. These sets are separated by '/'.
Definition DataSelector.cpp:282
A map of radar data, indexed by quantity code (DBZH, VRAD, etc).
Definition Data.h:1215
Base class for anomaly detectors.
Definition DetectorOp.h:49
bool REQUIRE_STANDARD_DATA
Set to true if operator expects fixed background intensities instead of "nodata" defined by the Polar...
Definition DetectorOp.h:216
bool UNIVERSAL
If true, applies also to quantities str than the one used in detection. The detection and the accumul...
Definition DetectorOp.h:181
Essential class for storing radar data.
Definition Data.h:300
TestOp(double value=0.0, double prob=1.0)
Create rectangular fake anomaly (value) and 'detect' it with desired probability (prob)
Definition TestOp.h:55
void runDetection(const DataSet< PolarSrc > &srcDataSet, PlainData< PolarDst > &dstProb, DataSet< PolarDst > &cache) const
Process as sweep (data in one elevation angle)
Definition TestOp.cpp:56
Namespace for images and image processing tools.
Definition AccumulationArray.cpp:45
Definition DataSelector.cpp:44