satdump/src-core/common/widgets/snr_plot.cpp

42 lines
1.5 KiB
C++
Raw Permalink Normal View History

#include "snr_plot.h"
#include "core/style.h"
#include "themed_widgets.h"
#include <array>
#include <cstring>
namespace satdump
2021-07-26 11:25:36 +02:00
{
namespace widgets
2021-07-26 11:25:36 +02:00
{
void SNRPlotViewer::draw(float snr, float peak_snr)
{
ImGui::Text("SNR (dB) : ");
ImGui::SameLine();
ImGui::TextColored(snr > 2 ? snr > 10 ? style::theme.green : style::theme.orange : style::theme.red, "%0.3f", snr);
2021-07-26 11:25:36 +02:00
ImGui::Text("Peak SNR (dB) : ");
ImGui::SameLine();
ImGui::TextColored(peak_snr > 2 ? peak_snr > 10 ? style::theme.green : style::theme.orange : style::theme.red, "%0.3f", peak_snr);
2021-07-26 11:25:36 +02:00
std::memmove(&snr_history[0], &snr_history[1], (200 - 1) * sizeof(float));
snr_history[200 - 1] = snr;
2021-07-26 11:25:36 +02:00
// Average of the snr_history
float avg_snr = 0.0f;
for (int i = 0; i < 200; i++)
{
if (snr_history[i] >= 0 && snr_history[i] <= peak_snr)
{
avg_snr += snr_history[i];
}
}
avg_snr = avg_snr / 200;
2023-02-23 19:20:14 +00:00
ImGui::Text("Avg SNR (dB) : ");
ImGui::SameLine();
ImGui::TextColored(avg_snr > 2 ? avg_snr > 10 ? style::theme.green : style::theme.orange : style::theme.red, "%0.3f", avg_snr);
2023-02-23 19:20:14 +00:00
widgets::ThemedPlotLines(style::theme.plot_bg.Value, "##snrplot", snr_history, IM_ARRAYSIZE(snr_history), 0, "", 0.0f, 25.0f, ImVec2(200 * ui_scale, 50 * ui_scale));
}
} // namespace widgets
} // namespace satdump