41 #include <drain/image/ImageFile.h>
44 #include "drain/util/Fuzzy.h"
45 #include "drain/image/Intensity.h"
47 #include "radar/Geometry.h"
49 #include "RemoverOp.h"
69 DamperOp(
double threshold=0.5,
double undetectThreshold=0.1,
double minValue = NAN) :
70 RemoverOp(__FUNCTION__,
"Removes anomalies with fuzzy deletion operator."){
72 dataSelector.setQuantities(
"^DBZH$");
74 parameters.link(
"threshold", this->threshold = threshold);
75 parameters.link(
"undetectThreshold", this->undetectThreshold = undetectThreshold);
76 parameters.link(
"minValue", this->minValue = minValue);
82 double undetectThreshold;
Definition: DamperOp.h:59
DamperOp(double threshold=0.5, double undetectThreshold=0.1, double minValue=NAN)
Definition: DamperOp.h:69
Essential class for storing radar data.
Definition: Data.h:302
The simplest possible anomaly removal operator and the base class for more complex ones.
Definition: RemoverOp.h:53
Namespace for images and image processing tools.
Definition: AccumulationArray.cpp:45
Definition: DataSelector.cpp:44