27 #include "drain/image/Image.h"
28 #include "drain/image/ImageView.h"
29 #include "drain/image/ImageOp.h"
44 template <
class T =
unsigned char,
class T2 =
unsigned char>
49 this->setInfo(
"Computes maximum altitude of echo.",
"",
"");
55 template <
class T,
class T2>
58 const unsigned int srcWidth = src.getWidth();
59 const unsigned int srcHeight = src.getHeight();
61 const unsigned int width = this->parameters.get(
"width",src.getWidth());
62 const unsigned int height = srcHeight;
65 radar::Geometry radarGeometry;
70 elevations.splitTo(radarGeometry.elevationAngles,
" ");
72 const unsigned int sweeps = radarGeometry.elevationAngles.size();
76 bins.splitTo(radarGeometry.bins,
" ");
77 if (radarGeometry.bins.size() != sweeps){
78 radarGeometry.bins.resize(sweeps,srcWidth);
81 for (
unsigned int i = 0; i < sweeps; ++i) {
82 radarGeometry.elevationAngles[i] *= M_PI/180.0;
90 unsigned int groundBin;
100 std::cout <<
"Starting Max\n";
101 std::cout <<
"\nParams:\n";
102 std::cout << this->parameters <<
'\n';
104 std::cout <<
"\nGeometry:\n";
105 std::cout << src.getGeometry() <<
'\n';
106 std::cout <<
"\nProperties:\n";
108 std::cout <<
"\nElevs: " << elevations <<
"\n";
110 for (
unsigned int i=0; i< radarGeometry.elevationAngles.size(); i++){
111 std::cout <<
"'" << radarGeometry.elevationAngles[i] <<
"', ";
116 double groundDistance = 0.0;
120 for (
unsigned int k=0; k<sweeps; k++){
123 const unsigned int srcWidth = srcSweep.getWidth();
125 eta = radarGeometry.elevationAngles[k];
127 for (
unsigned int i=0; i<width; i++){
130 groundBin = (i * srcWidth) / width;
132 groundDistance = groundBin*binDepth + binDepth/2.0;
133 beta = Geometry::betaFromGround(groundDistance);
135 bin =
static_cast<unsigned int>(Geometry::beamFromEtaBeta(eta,beta) / binDepth);
137 if (bin < radarGeometry.bins[k]) {
139 for (
unsigned int j=0; j<height; j++){
140 T2 s =
static_cast<T2
>(srcSweep.at(bin,j));
141 T2 &d = dst.at(bin,j);
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
Base class for image processing functions.
Definition: ImageOp.h:49
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
Definition: ProductFQD.h:46
image::Image< T > & filter(const image::Image< T > &src, image::Image< T2 > &dst) const
Definition: ProductFQD.h:56
Definition: DataSelector.cpp:1277