34#include "DetectorOp.h"
57 ZDRvarOp(
double threshold=0.5,
double thresholdWidth=0.1,
double windowWidth=5.0,
double windowHeight=5.0,
double medianPos=0.3) :
58 DetectorOp(__FUNCTION__,
"Detects clutter. Based on dual-pol parameter ZDRvar . Optional postprocessing: morphological closing. Universal."){
62 parameters.link(
"threshold", this->threshold = threshold);
63 parameters.link(
"thresholdWidth", this->thresholdWidth = thresholdWidth);
64 parameters.link(
"windowWidth", this->windowWidth = windowWidth);
65 parameters.link(
"windowHeight", this->windowHeight = windowHeight);
66 parameters.link(
"medianPos", this->medianPos = medianPos);
71 double thresholdWidth;
void setQuantities(const std::string &s)
Sets basic quantities and quality quantities. These sets are separated by '/'.
Definition DataSelector.cpp:282
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
virtual void runDetector(const PlainData< PolarSrc > &srcData, PlainData< PolarDst > &dstProb) const
Process as sweep (data in one elevation angle)
Definition ZDRvarOp.cpp:47
ZDRvarOp(double threshold=0.5, double thresholdWidth=0.1, double windowWidth=5.0, double windowHeight=5.0, double medianPos=0.3)
Computes variance of ZDR in a window.
Definition ZDRvarOp.h:57
Namespace for images and image processing tools.
Definition AccumulationArray.cpp:45
Definition DataSelector.cpp:44