Loading...
Searching...
No Matches
SpeckleOp.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*/
40#ifndef SPECKLEOP2_H_
41#define SPECKLEOP2_H_
42
43#include "DetectorOp.h"
44
45using namespace drain::image;
46
47namespace rack {
48
52class SpeckleOp: public DetectorOp {
53
54public:
55
57
64 inline
65 SpeckleOp(double threshold=-20.0, int area=16, bool invertPolar=false) :
66
67 DetectorOp(__FUNCTION__,"Detects speckle noise. Universal: uses DBZ data as input, applies to all data in a sweep group.", "noise.speckle"){
68 dataSelector.setQuantities("^DBZH$");
69 UNIVERSAL = true;
71
72 parameters.link("threshold", this->threshold = threshold, "dBZ");
73 parameters.link("area", this->area = area, "bins");
74 parameters.link("invertPolar", this->invertPolar = invertPolar, "bins");
75 };
76
77 inline
78 SpeckleOp(const SpeckleOp & op) : DetectorOp(op), threshold(-20.0), area(16), invertPolar(false) {
79 parameters.copyStruct(op.getParameters(), op, *this);
80 }
81
82 double threshold;
83 int area;
84 bool invertPolar;
85
86protected:
87
88 virtual
89 void runDetector(const PlainData<PolarSrc> &src, PlainData<PolarDst> &dst) const;
90
91};
92
93
94}
95
96#endif /* POLARTOCARTESIANOP_H_ */
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
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
Definition SpeckleOp.h:52
SpeckleOp(double threshold=-20.0, int area=16, bool invertPolar=false)
Computes sizes of segments having intensity over threshold.
Definition SpeckleOp.h:65
virtual void runDetector(const PlainData< PolarSrc > &src, PlainData< PolarDst > &dst) const
Process as sweep (data in one elevation angle)
Definition SpeckleOp.cpp:55
Namespace for images and image processing tools.
Definition AccumulationArray.cpp:45
Definition DataSelector.cpp:44