0.3.0
Loading...
Searching...
No Matches
Matrix.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <Eigen/Core>
17#include <cstdint>
18#include <imgui.h>
19
22
31
32namespace NAV::gui::widgets
33{
34#if defined(__GNUC__) || defined(__clang__)
35 #pragma GCC diagnostic push
36 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
37#endif
38
48template<typename _Scalar, int _Rows, int _Cols>
49void MatrixView(const char* label, const Eigen::Matrix<_Scalar, _Rows, _Cols>* matrix, GuiMatrixViewFlags flags = GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags = ImGuiTableFlags_None,
50 const char* format = "%.6f")
51{
52 if (ImGui::BeginTable(label, static_cast<int>(matrix->cols()) + ((flags & GuiMatrixViewFlags_RowHeader) == 1), tableFlags))
53 {
55 {
57 {
58 ImGui::TableSetupColumn("");
59 }
60 for (int64_t col = 0; col < matrix->cols(); col++)
61 {
62 ImGui::TableSetupColumn(std::to_string(col).c_str());
63 }
64 ImGui::TableHeadersRow();
65 }
66
67 for (int64_t row = 0; row < matrix->rows(); row++)
68 {
70 {
71 ImGui::TableNextColumn();
72 ImGui::TextUnformatted(std::to_string(row).c_str());
73 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
74 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
75 }
76
77 for (int64_t col = 0; col < matrix->cols(); col++)
78 {
79 ImGui::TableNextColumn();
80 ImGui::Text(format, (*matrix)(row, col));
81 }
82 }
83 ImGui::EndTable();
84 }
85}
86#if defined(__GNUC__) || defined(__clang__)
87 #pragma GCC diagnostic pop
88#endif
89
104template<typename _Scalar, int _Rows, int _Cols>
105bool InputMatrix(const char* label, Eigen::Matrix<_Scalar, _Rows, _Cols>* matrix, GuiMatrixViewFlags flags = GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags = ImGuiTableFlags_None,
106 float inputTextWidth = 50.0F, double step = 0.0, double step_fast = 0.0, const char* format = "%.6f", ImGuiInputTextFlags inputTextFlags = ImGuiInputTextFlags_None)
107{
108 bool changed = false;
109 if (ImGui::BeginTable(label, static_cast<int>(matrix->cols()) + ((flags & GuiMatrixViewFlags_RowHeader) == 1), tableFlags))
110 {
112 {
114 {
115 ImGui::TableSetupColumn("");
116 }
117 for (int64_t col = 0; col < matrix->cols(); col++)
118 {
119 ImGui::TableSetupColumn(std::to_string(col).c_str());
120 }
121 ImGui::TableHeadersRow();
122 }
123
124 for (int64_t row = 0; row < matrix->rows(); row++)
125 {
127 {
128 ImGui::TableNextColumn();
129 ImGui::TextUnformatted(std::to_string(row).c_str());
130 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
131 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
132 }
133
134 for (int64_t col = 0; col < matrix->cols(); col++)
135 {
136 ImGui::TableNextColumn();
137 ImGui::SetNextItemWidth(inputTextWidth);
138 if (ImGui::InputDouble(fmt::format("##{} ({}, {})", label, row, col).c_str(), &(*matrix)(row, col), step, step_fast, format, inputTextFlags))
139 {
140 changed = true;
141 }
142 }
143 }
144 ImGui::EndTable();
145 }
146
147 return changed;
148}
149
150} // namespace NAV::gui::widgets
int GuiMatrixViewFlags
Flags for MatrixView GUI elements GuiMatrixViewFlags_.
Definition Matrix.hpp:21
void MatrixView(const char *label, const Eigen::Matrix< _Scalar, _Rows, _Cols > *matrix, GuiMatrixViewFlags flags=GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags=ImGuiTableFlags_None, const char *format="%.6f")
Shows GUI elements to display the coefficients of a matrix.
Definition Matrix.hpp:49
bool InputMatrix(const char *label, Eigen::Matrix< _Scalar, _Rows, _Cols > *matrix, GuiMatrixViewFlags flags=GuiMatrixViewFlags_None, ImGuiTableFlags tableFlags=ImGuiTableFlags_None, float inputTextWidth=50.0F, double step=0.0, double step_fast=0.0, const char *format="%.6f", ImGuiInputTextFlags inputTextFlags=ImGuiInputTextFlags_None)
Shows GUI elements to modify the coefficients of a matrix with.
Definition Matrix.hpp:105
GuiMatrixViewFlags_
Flags to select the MatrixView behaviour.
Definition Matrix.hpp:25
@ GuiMatrixViewFlags_None
None.
Definition Matrix.hpp:26
@ GuiMatrixViewFlags_RowHeader
Print the Row Header.
Definition Matrix.hpp:27
@ GuiMatrixViewFlags_ColumnHeader
Print the Col Header.
Definition Matrix.hpp:28
@ GuiMatrixViewFlags_Header
Print all Header.
Definition Matrix.hpp:29