12 #define ANORACK_H_ "AnoRack v0.1"
15 #include "radar/Andre.h"
27 template <
class T =
unsigned char,
class T2 =
unsigned char>
34 : rack::AndreDetector<T,T2>(
"ship",
"Detects ships",
"threshold,size,sidelobe",p){
41 makeCompatible(src,dst);
43 const int threshold = this->getParameter(
"threshold",64);
44 const int size = this->getParameter(
"size",4);
45 const int sidelobe = this->getParameter(
"sidelobe",5);
61 MultiplicationOp<T,T>().filter(src,dst,dst);
80 template <
class T =
unsigned char,
class T2 =
unsigned char>
87 : rack::AndreDetector<T,T2>(
"aRadome",
"Detects radome attenuation.",
"dBZmax,binStart,binEnd,power",p) {
93 makeCompatible(src,dst);
95 const unsigned int width = src.getWidth();
96 const unsigned int height = src.getHeight();
98 const float dBZmax = this->getParameter(
"dBZmax",45);
99 const unsigned int binStart = std::min(this->getParameter(
"binStart",10u),width-1);
100 const unsigned int binEnd = std::min(this->getParameter(
"binEnd",20u),width-1);
101 const double power = this->getParameter(
"power",2.0);
104 const double byteMax = dBZmax*2.0 + 64.0;
106 std::cerr << binStart <<
':' << binEnd <<
'\n';
110 for (
unsigned int i = binStart; i < binEnd; ++i) {
111 for (
unsigned int j = 0; j < height; ++j) {
113 x = std::min(x,byteMax);
115 sum += ::pow(x/byteMax,power);
122 255*(sum/(width*(binEnd-binStart)));
123 std::cerr <<
"sum=" << sum <<
'\n';
127 for (
unsigned int i = 0; i < width; ++i) {
128 for (
unsigned int j = 0; j < height; ++j) {
129 dst.at(i,j) =
static_cast<T
>(sum);
156 template <
class T =
unsigned char,
class T2 =
unsigned char>
162 : rack::AndreDetector<T,T2>(
"aAttenuation",
"Computes attenuation using cZe^p + c2Ze^p2. Alternatively, set c 'rain' or 'snow'.",
"c,p,c2,p2",p){
167 const std::string & cStr = this->parameters.get(
"c",
"1.12e-4");
168 double c = this->parameters.get(
"c",1.12e-4);
169 double p = this->parameters.get(
"p",0.62);
170 double c2 = this->parameters.get(
"c2",0);
171 double p2 = this->parameters.get(
"p2",0);
179 else if (cStr ==
"snow"){
185 else if (cStr ==
"erad"){
191 else if (cStr ==
"demo"){
197 else if (cStr ==
"demo2"){
204 const unsigned int srcWidth = src.getGeometry().getWidth();
205 const unsigned int srcHeight = src.getGeometry().getHeight();
206 const unsigned int srcChannels = src.getGeometry().getImageChannelCount();
209 std::cout <<
"Attn: << " << src.getGeometry() <<
"\n";
210 std::cout <<
"Attn: << " << dst.getGeometry() <<
"\n";
214 std::cerr <<
"Attn:" << c <<
','<< p <<
','<< c2 <<
','<< p2 <<
'\n';
225 double zAttnCumulated=0;
236 for (
unsigned int k = 0; k < srcChannels; ++k) {
237 for (
unsigned int j = 0; j < srcHeight; ++j) {
239 for (
unsigned int i = 0; i < srcWidth; ++i) {
240 dbzObs = (src.at(i,j,k)-64)*2;
248 zAttnBin = c*::pow(zTrue,p) * binDepth * 2.0;
249 zAttnCumulated += zAttnBin;
252 confidence = zAttnCumulated/100.0;
254 confidence = 245.0 - 245.0/(1.0+confidence);
261 dst.at(i,j,k) =
static_cast<T2
>(confidence);
272 template <
class T =
unsigned char,
class T2 =
unsigned char>
284 virtual void addDefaultOps(){
285 rack::Andre<T,T2>::addDefaultOps();
286 addOperator(
"ship2",ship2);
287 addOperator(
"attenuation",attenuation);
288 addOperator(
"radome",radome);
Definition: AnoRack.h:158
void filter(const Image< T > &src, Image< T2 > &dst) const
Definition: AnoRack.h:166
Detects speckle noise.
Definition: AnoRack.h:82
Detects speckle noise.
Definition: AnoRack.h:29
Definition: AnoRack.h:273
void setParameter(const std::string &p, const Castable &value)
Sets a single parameter.
Definition: BeanLike.h:198
std::string get(const std::string &key, const std::string &defaultValue) const
Retrieves a value, or default value if value is unset.
Definition: SmartMap.h:127
FlexVariableMap properties
Container for user-defined KEY=VALUE metadata.
Definition: ImageFrame.h:369
Class for multi-channel digital images. Supports dynamic typing with base types (char,...
Definition: Image.h:184
virtual void setGeometry(size_t width, size_t height, size_t imageChannels=1, size_t alphaChannels=0)
Resizes the image, keeps the current type.
Definition: Image.h:95
Computes sizes of connected pixel areas.
Definition: SegmentAreaOp.h:97
Namespace for images and image processing tools.
Definition: AccumulationArray.cpp:45
double dbzToZ(const T &dBZ)
Definition: Constants.h:69