37 #include "DetectorOp.h"
61 ShipOp(
double reflMin = 25.0,
double reflDev = 15.0,
int windowWidth = 1500,
double windowHeight = 3.0) :
62 DetectorOp(__FUNCTION__,
"Detects ships based on their high absolute reflectivity and local reflectivity difference.",
"nonmet.clutter.ship"){
63 parameters.link(
"reflMin", this->reflMin = reflMin,
"dBZ");
64 parameters.link(
"reflDev", this->reflDev = reflDev,
"dBZ");
65 parameters.link(
"windowWidth", this->windowWidth = windowWidth,
"m");
66 parameters.link(
"windowHeight", this->windowHeight = windowHeight,
"deg");
67 dataSelector.setQuantities(
"^DBZH$");
68 REQUIRE_STANDARD_DATA =
false;
Base class for anomaly detectors.
Definition: DetectorOp.h:49
Essential class for storing radar data.
Definition: Data.h:302
Detects ships.
Definition: ShipOp.h:52
ShipOp(double reflMin=25.0, double reflDev=15.0, int windowWidth=1500, double windowHeight=3.0)
Definition: ShipOp.h:61
Namespace for images and image processing tools.
Definition: AccumulationArray.cpp:45
Definition: DataSelector.cpp:44