summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/HistogramDisplayPlot.cc
blob: ce9ed3c00d42e9030f29a3e1202b016bf5f8981d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
/* -*- c++ -*- */
/*
 * Copyright 2013 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * GNU Radio is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 *
 * GNU Radio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GNU Radio; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */

#ifndef HISTOGRAM_DISPLAY_PLOT_C
#define HISTOGRAM_DISPLAY_PLOT_C

#include <gnuradio/qtgui/HistogramDisplayPlot.h>

#include <qwt_scale_draw.h>
#include <qwt_legend.h>
#include <QColor>
#include <cmath>
#include <iostream>
#include <volk/volk.h>
#include <gnuradio/math.h>
#include <boost/math/special_functions/round.hpp>

#ifdef _MSC_VER
#define copysign _copysign
#endif

class TimePrecisionClass
{
public:
  TimePrecisionClass(const int timeprecision)
  {
    d_time_precision = timeprecision;
  }

  virtual ~TimePrecisionClass()
  {
  }

  virtual unsigned int getTimePrecision() const
  {
    return d_time_precision;
  }

  virtual void setTimePrecision(const unsigned int newprecision)
  {
    d_time_precision = newprecision;
  }
protected:
  unsigned int d_time_precision;
};


class HistogramDisplayZoomer: public QwtPlotZoomer, public TimePrecisionClass
{
public:
#if QWT_VERSION < 0x060100
  HistogramDisplayZoomer(QwtPlotCanvas* canvas, const unsigned int timeprecision)
#else /* QWT_VERSION < 0x060100 */
  HistogramDisplayZoomer(QWidget* canvas, const unsigned int timeprecision)
#endif /* QWT_VERSION < 0x060100 */
    : QwtPlotZoomer(canvas),TimePrecisionClass(timeprecision)
  {
    setTrackerMode(QwtPicker::AlwaysOn);
  }

  virtual ~HistogramDisplayZoomer()
  {
  }

  virtual void updateTrackerText()
  {
    updateDisplay();
  }

  void setUnitType(const std::string &type)
  {
    d_unit_type = type;
  }

protected:
  using QwtPlotZoomer::trackerText;
  virtual QwtText trackerText(const QPoint& p) const
  {
    QwtText t;
    QwtDoublePoint dp = QwtPlotZoomer::invTransform(p);
    if((dp.y() > 0.0001) && (dp.y() < 10000)) {
      t.setText(QString("%1, %2").
		arg(dp.x(), 0, 'f', 4).
		arg(dp.y(), 0, 'f', 0));
    }
    else {
      t.setText(QString("%1, %2").
		arg(dp.x(), 0, 'f', 4).
		arg(dp.y(), 0, 'e', 0));
    }

    return t;
  }

private:
  std::string d_unit_type;
};


/***********************************************************************
 * Main Time domain plotter widget
 **********************************************************************/
HistogramDisplayPlot::HistogramDisplayPlot(int nplots, QWidget* parent)
  : DisplayPlot(nplots, parent)
{
  d_bins = 100;
  d_accum = false;

  // Initialize x-axis data array
  d_xdata = new double[d_bins];
  memset(d_xdata, 0x0, d_bins*sizeof(double));

  d_zoomer = new HistogramDisplayZoomer(canvas(), 0);

#if QWT_VERSION < 0x060000
  d_zoomer->setSelectionFlags(QwtPicker::RectSelection | QwtPicker::DragSelection);
#endif

  d_zoomer->setMousePattern(QwtEventPattern::MouseSelect2,
                            Qt::RightButton, Qt::ControlModifier);
  d_zoomer->setMousePattern(QwtEventPattern::MouseSelect3,
                            Qt::RightButton);

  const QColor c(Qt::darkRed);
  d_zoomer->setRubberBandPen(c);
  d_zoomer->setTrackerPen(c);

  d_semilogx = false;
  d_semilogy = false;
  d_autoscale_state = true;
  d_autoscalex_state = false;

  setAxisScaleEngine(QwtPlot::xBottom, new QwtLinearScaleEngine);
  setXaxis(-1, 1);
  setAxisTitle(QwtPlot::xBottom, "Value");

  setAxisScaleEngine(QwtPlot::yLeft, new QwtLinearScaleEngine);
  setYaxis(-2.0, d_bins);
  setAxisTitle(QwtPlot::yLeft, "Count");
  
  QList<QColor> colors;
  colors << QColor(Qt::blue) << QColor(Qt::red) << QColor(Qt::green)
	 << QColor(Qt::black) << QColor(Qt::cyan) << QColor(Qt::magenta)
	 << QColor(Qt::yellow) << QColor(Qt::gray) << QColor(Qt::darkRed)
	 << QColor(Qt::darkGreen) << QColor(Qt::darkBlue) << QColor(Qt::darkGray);

  // Setup dataPoints and plot vectors
  // Automatically deleted when parent is deleted
  for(int i = 0; i < d_nplots; i++) {
    d_ydata.push_back(new double[d_bins]);
    memset(d_ydata[i], 0, d_bins*sizeof(double));

    d_plot_curve.push_back(new QwtPlotCurve(QString("Data %1").arg(i)));
    d_plot_curve[i]->attach(this);
    d_plot_curve[i]->setPen(QPen(colors[i]));
    d_plot_curve[i]->setRenderHint(QwtPlotItem::RenderAntialiased);

    // Adjust color's transparency for the brush
    colors[i].setAlpha(127 / d_nplots);
    d_plot_curve[i]->setBrush(QBrush(colors[i]));

    colors[i].setAlpha(255 / d_nplots);
    QwtSymbol *symbol = new QwtSymbol(QwtSymbol::NoSymbol, QBrush(colors[i]),
				      QPen(colors[i]), QSize(7,7));

#if QWT_VERSION < 0x060000
    d_plot_curve[i]->setRawData(d_xdata, d_ydata[i], d_bins);
    d_plot_curve[i]->setSymbol(*symbol);
#else
    d_plot_curve[i]->setRawSamples(d_xdata, d_ydata[i], d_bins);
    d_plot_curve[i]->setSymbol(symbol);
#endif
  }

  _resetXAxisPoints(-1, 1);
}

HistogramDisplayPlot::~HistogramDisplayPlot()
{
  for(int i = 0; i < d_nplots; i++)
    delete[] d_ydata[i];
  delete[] d_xdata;

  // d_zoomer and _panner deleted when parent deleted
}

void
HistogramDisplayPlot::replot()
{
  QwtPlot::replot();
}

void
HistogramDisplayPlot::plotNewData(const std::vector<double*> dataPoints,
				   const int64_t numDataPoints,
				   const double timeInterval)
{
  if(!d_stop) {
    if((numDataPoints > 0)) {

      // keep track of the min/max values for when autoscaleX is called.
      d_xmin = 1e20;
      d_xmax = -1e20;
      for(int n = 0; n < d_nplots; n++) {
        d_xmin = std::min(d_xmin, *std::min_element(dataPoints[n], dataPoints[n]+numDataPoints));
        d_xmax = std::max(d_xmax, *std::max_element(dataPoints[n], dataPoints[n]+numDataPoints));
      }

      // If autoscalex has been clicked, clear the data for the new
      // bin widths and reset the x-axis.
      if(d_autoscalex_state) {
        for(int n = 0; n < d_nplots; n++)
          memset(d_ydata[n], 0, d_bins*sizeof(double));
        _resetXAxisPoints(d_xmin, d_xmax);
        d_autoscalex_state = false;
      }

      int index;
      for(int n = 0; n < d_nplots; n++) {
        if(!d_accum)
          memset(d_ydata[n], 0, d_bins*sizeof(double));
        for(int64_t point = 0; point < numDataPoints; point++) {
          index = boost::math::iround(1e-20 + (dataPoints[n][point] - d_left)/d_width);
          if((index >= 0) && (index < d_bins))
            d_ydata[n][static_cast<int>(index)] += 1;
        }
      }

      double height = *std::max_element(d_ydata[0], d_ydata[0]+d_bins);
      for(int n = 1; n < d_nplots; n++) {
        height = std::max(height, *std::max_element(d_ydata[n], d_ydata[n]+d_bins));
      }

      if(d_autoscale_state)
        _autoScaleY(0, height);

      replot();
    }
  }
}

void
HistogramDisplayPlot::setXaxis(double min, double max)
{
  _resetXAxisPoints(min, max);
}

void
HistogramDisplayPlot::_resetXAxisPoints(double left, double right)
{
  // Something's wrong with the data (NaN, Inf, or something else)
  if((left == right) || (left > right))
    throw std::runtime_error("HistogramDisplayPlot::_resetXAxisPoints left and/or right values are invalid");

  d_left  = left *(1 - copysign(0.1, left));
  d_right = right*(1 + copysign(0.1, right));
  d_width = (d_right - d_left)/(d_bins);
  for(long loc = 0; loc < d_bins; loc++){
    d_xdata[loc] = d_left + loc*d_width;
  }
#if QWT_VERSION < 0x060100
  axisScaleDiv(QwtPlot::xBottom)->setInterval(d_left, d_right);
#else /* QWT_VERSION < 0x060100 */
  QwtScaleDiv scalediv(d_left, d_right);
  setAxisScaleDiv(QwtPlot::xBottom, scalediv);
#endif /* QWT_VERSION < 0x060100 */

  // Set up zoomer base for maximum unzoom x-axis
  // and reset to maximum unzoom level
  QwtDoubleRect zbase = d_zoomer->zoomBase();

  if(d_semilogx) {
    setAxisScale(QwtPlot::xBottom, 1e-1, d_right);
    zbase.setLeft(1e-1);
  }
  else {
    setAxisScale(QwtPlot::xBottom, d_left, d_right);
    zbase.setLeft(d_left);
  }

  zbase.setRight(d_right);
  d_zoomer->zoom(zbase);
  d_zoomer->setZoomBase(zbase);
  d_zoomer->zoom(0);
}

void
HistogramDisplayPlot::_autoScaleY(double bottom, double top)
{
  // Auto scale the y-axis with a margin of 20% (10 dB for log scale)
  double b = bottom - fabs(bottom)*0.20;
  double t = top + fabs(top)*0.20;
  if(d_semilogy) {
    if(bottom > 0) {
      setYaxis(b-10, t+10);
    }
    else {
      setYaxis(1e-3, t+10);
    }
  }
  else {
    setYaxis(b, t);
  }
}

void
HistogramDisplayPlot::setAutoScaleX()
{
  d_autoscalex_state = true;
}

void
HistogramDisplayPlot::setAutoScale(bool state)
{
  d_autoscale_state = state;
}

void
HistogramDisplayPlot::setSemilogx(bool en)
{
  d_semilogx = en;
  if(!d_semilogx) {
    setAxisScaleEngine(QwtPlot::xBottom, new QwtLinearScaleEngine);
  }
  else {
#if QWT_VERSION < 0x060100
    setAxisScaleEngine(QwtPlot::xBottom, new QwtLog10ScaleEngine);
#else /* QWT_VERSION < 0x060100 */
    setAxisScaleEngine(QwtPlot::xBottom, new QwtLogScaleEngine);
#endif /* QWT_VERSION < 0x060100 */
  }
}

void
HistogramDisplayPlot::setSemilogy(bool en)
{
  if(d_semilogy != en) {
    d_semilogy = en;

#if QWT_VERSION < 0x060100
    double max = axisScaleDiv(QwtPlot::yLeft)->upperBound();
#else /* QWT_VERSION < 0x060100 */
    double max = axisScaleDiv(QwtPlot::yLeft).upperBound();
#endif /* QWT_VERSION < 0x060100 */

    if(!d_semilogy) {
      setAxisScaleEngine(QwtPlot::yLeft, new QwtLinearScaleEngine);
      setYaxis(-pow(10.0, max/10.0), pow(10.0, max/10.0));
    }
    else {
#if QWT_VERSION < 0x060100
      setAxisScaleEngine(QwtPlot::yLeft, new QwtLog10ScaleEngine);
#else /* QWT_VERSION < 0x060100 */
    setAxisScaleEngine(QwtPlot::yLeft, new QwtLogScaleEngine);
#endif /* QWT_VERSION < 0x060100 */
      setYaxis(1e-10, 10.0*log10(100*max));
    }
  }
}

void
HistogramDisplayPlot::setAccumulate(bool state)
{
  d_accum = state;
}

void
HistogramDisplayPlot::setMarkerAlpha(int which, int alpha)
{
  if(which < d_nplots) {
    // Get the pen color
    QPen pen(d_plot_curve[which]->pen());
    QBrush brush(d_plot_curve[which]->brush());
    QColor color = brush.color();
    
    // Set new alpha and update pen
    color.setAlpha(alpha);
    brush.setColor(color);
    color.setAlpha(std::min(255, static_cast<int>(alpha*1.5)));
    pen.setColor(color);
    d_plot_curve[which]->setBrush(brush);
    d_plot_curve[which]->setPen(pen);

    // And set the new color for the markers
#if QWT_VERSION < 0x060000
    QwtSymbol sym = (QwtSymbol)d_plot_curve[which]->symbol();
    setLineMarker(which, sym.style());
#else
    QwtSymbol *sym = (QwtSymbol*)d_plot_curve[which]->symbol();
    if(sym) {
      sym->setColor(color);
      sym->setPen(pen);
      d_plot_curve[which]->setSymbol(sym);
    }
#endif
  }
}

int
HistogramDisplayPlot::getMarkerAlpha(int which) const
{
  if(which < d_nplots) {
    return d_plot_curve[which]->brush().color().alpha();
  }
  else {
    return 0;
  }
}

void
HistogramDisplayPlot::setLineColor(int which, QColor color)
{
  if(which < d_nplots) {
    // Adjust color's transparency for the brush
    color.setAlpha(127 / d_nplots);

    QBrush brush(d_plot_curve[which]->brush());
    brush.setColor(color);
    d_plot_curve[which]->setBrush(brush);

    // Adjust color's transparency darker for the pen and markers
    color.setAlpha(255 / d_nplots);

    QPen pen(d_plot_curve[which]->pen());
    pen.setColor(color);
    d_plot_curve[which]->setPen(pen);

#if QWT_VERSION < 0x060000
    d_plot_curve[which]->setPen(pen);
    QwtSymbol sym = (QwtSymbol)d_plot_curve[which]->symbol();
    setLineMarker(which, sym.style());
#else
    QwtSymbol *sym = (QwtSymbol*)d_plot_curve[which]->symbol();
    if(sym) {
      sym->setColor(color);
      sym->setPen(pen);
      d_plot_curve[which]->setSymbol(sym);
    }
#endif
  }
}

void
HistogramDisplayPlot::setNumBins(int bins)
{
  d_bins = bins;
  
  delete [] d_xdata;
  d_xdata = new double[d_bins];
  _resetXAxisPoints(d_left, d_right);

  for(int i = 0; i < d_nplots; i++) {
    delete [] d_ydata[i];
    d_ydata[i] = new double[d_bins];
    memset(d_ydata[i], 0, d_bins*sizeof(double));

#if QWT_VERSION < 0x060000
    d_plot_curve[i]->setRawData(d_xdata, d_ydata[i], d_bins);
#else
    d_plot_curve[i]->setRawSamples(d_xdata, d_ydata[i], d_bins);
#endif
  }
}

#endif /* HISTOGRAM_DISPLAY_PLOT_C */