Loading...
Searching...
No Matches
DopplerNoiseOp.h
1/*
2
3MIT License
4
5Copyright (c) 2017 FMI Open Development / Markus Peura, first.last@fmi.fi
6
7Permission is hereby granted, free of charge, to any person obtaining a copy
8of this software and associated documentation files (the "Software"), to deal
9in the Software without restriction, including without limitation the rights
10to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11copies of the Software, and to permit persons to whom the Software is
12furnished to do so, subject to the following conditions:
13
14The above copyright notice and this permission notice shall be included in all
15copies or substantial portions of the Software.
16
17THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23SOFTWARE.
24
25*/
26/*
27Part of Rack development has been done in the BALTRAD projects part-financed
28by the European Union (European Regional Development Fund and European
29Neighbourhood Partnership Instrument, Baltic Sea Region Programme 2007-2013)
30*/
31#ifndef DopplerNoise_H_
32#define DopplerNoise_H_
33
34//#include "PolarProductOp.h"
35#include <drain/imageops/ImageOp.h>
36#include "radar/Doppler.h"
37
38#include "DetectorOp.h"
39
40using namespace drain::image;
41
42namespace rack {
43
45
49
50public:
51
60 inline
61 DopplerNoiseOp(double speedDevThreshold = 3.0, double windowWidthM = 1500, double windowHeightD = 3.0) :
62
63 DetectorOp(__FUNCTION__, "Detects suspicious variance in Doppler speed (VRAD).", "nonmet.biol.dopplernoise"){
64
65 // dataSelector.path = "da ta[0-9]+/?$";
66 // dataSelector.setQuantityRegExp("^(VRAD|VRADH)$");
67 dataSelector.setQuantities("VRADH:VRAD");
68 // dataSelector.setMaxCount(1);
69
70 parameters.link("speedDevThreshold", this->speedDevThreshold = speedDevThreshold, "Minimum of bin-to-bin Doppler speed (VRAD) deviation (m/s)");
71 parameters.link("windowWidth", this->conf.widthM = windowWidthM, "window width, beam-directional (m)"); //, "[m]");
72 parameters.link("windowHeight", this->conf.heightD = windowHeightD, "window height, azimuthal (deg)"); //, "[d]");
73 this->conf.relativeScale = false;
74 this->conf.invertPolar = true;
75 };
76
77 inline
78 DopplerNoiseOp(const DopplerNoiseOp &op): DetectorOp(op), conf(op.conf){
79 parameters.copyStruct(op.getParameters(), op, *this);
80 }
81
82 virtual
83 inline
84 ~DopplerNoiseOp(){};
85
86 double speedDevThreshold = 3.0;
87 DopplerDevWindow::conf_t conf;
88
89
90 virtual
91 void runDetection(const DataSet<PolarSrc> & src, PlainData<PolarDst> & dstProb, DataSet<PolarDst> & dstAux) const;
92
93
94
95};
96
97
98}
99
100#endif
101
102// Rack
void copyStruct(const ReferenceMap &m, const T &src, T &dst, extLinkPolicy policy=RESERVE)
Experimental. Copies references and values of a structure to another.
Definition ReferenceMap.h:399
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
Detects suspicious variance in Doppler speed (VRAD).
Definition DopplerNoiseOp.h:48
virtual void runDetection(const DataSet< PolarSrc > &src, PlainData< PolarDst > &dstProb, DataSet< PolarDst > &dstAux) const
Process as sweep (data in one elevation angle)
Definition DopplerNoiseOp.cpp:56
DopplerNoiseOp(double speedDevThreshold=3.0, double windowWidthM=1500, double windowHeightD=3.0)
Definition DopplerNoiseOp.h:61
Namespace for images and image processing tools.
Definition AccumulationArray.cpp:45
Definition DataSelector.cpp:44