BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_scale.cpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#include "ui_scale.h"
21
22#include "utils_imgui.hpp"
23
25 : show_window(false)
26{
27}
28
29void
30UiScaler::render(State &state, ImGuiWindowFlags window_flags)
31{
32 if (!show_window)
33 return;
34
35 if (state.data.names.size() != state.trans.dim()) {
36 ImGui::Begin("Data error", nullptr, window_flags);
37 ImGui::Text("Data has different dimension than transformed data.");
38 if (ImGui::Button("OK")) {
39 show_window = false;
40 }
41 ImGui::End();
42 return;
43 }
44
45 if (state.data.names.size() != state.scaled.dim()) {
46 ImGui::Begin("Data error", nullptr, window_flags);
47 ImGui::Text("Data has different dimension than scaled data.");
48 if (ImGui::Button("OK")) {
49 show_window = false;
50 }
51 ImGui::End();
52 return;
53 }
54
55 auto dim = state.trans.dim();
56
57 if (ImGui::Begin("Scale", &show_window, window_flags)) {
58 if (reset_button()) {
59 state.trans.reset();
60 state.scaled.reset();
61 }
62
63 if (!dim) {
64 ImGui::Text("No columns were detected.");
65 ImGui::End();
66 return;
67 }
68
69 ImGui::BeginTable("##tabletrans", 6);
70 ImGui::TableNextColumn();
71 ImGui::TableNextColumn();
72 ImGui::Text("asinh");
73 ImGui::TableNextColumn();
74 ImGui::Text("asinh cofactor");
75 ImGui::TableNextColumn();
76 ImGui::Text("affine adjust");
77 ImGui::TableNextColumn();
78 ImGui::Text("scale");
79 ImGui::TableNextColumn();
80 ImGui::Text("sdev");
81
82 for (size_t i = 0; i < dim; ++i) {
83 ImGui::TableNextColumn();
84 ImGui::Text(state.data.names[i].c_str());
85
86 ImGui::TableNextColumn();
87 std::string name = "##asinh" + std::to_string(i);
88 if (ImGui::Checkbox(name.data(), &state.trans.config[i].asinh))
89 state.trans.touch_config();
90
91 ImGui::TableNextColumn();
92 ImGui::SetNextItemWidth(slider_width);
93 name = "##asinh_cofactor" + std::to_string(i);
94 if (ImGui::SliderFloat(name.data(),
95 &state.trans.config[i].asinh_cofactor,
96 0.1f,
97 1000.0f,
98 "%.3f",
99 ImGuiSliderFlags_AlwaysClamp))
100 state.trans.touch_config();
101
102 ImGui::TableNextColumn();
103 ImGui::SetNextItemWidth(slider_width);
104 name = "##affine_adjust" + std::to_string(i);
105 if (ImGui::SliderFloat(name.data(),
106 &state.trans.config[i].affine_adjust,
107 -3.0f,
108 3.0f,
109 "%.3f",
110 ImGuiSliderFlags_AlwaysClamp))
111 state.trans.touch_config();
112
113 ImGui::TableNextColumn();
114 name = "##scale" + std::to_string(i);
115 if (ImGui::Checkbox(name.data(), &state.scaled.config[i].scale))
116 state.scaled.touch_config();
117
118 ImGui::TableNextColumn();
119 ImGui::SetNextItemWidth(slider_width);
120 name = "##sdev" + std::to_string(i);
121 if (ImGui::SliderFloat(name.data(),
122 &state.scaled.config[i].sdev,
123 0.1f,
124 5.0f,
125 "%.3f",
126 ImGuiSliderFlags_AlwaysClamp))
127 state.scaled.touch_config();
128 }
129
130 ImGui::EndTable();
131 ImGui::End();
132 }
133}
std::vector< std::string > names
Names of the dimensions.
Definition: data_model.h:37
std::vector< ScaleConfig > config
Separate configurations for each dimension.
Definition: scaled_data.h:57
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
Definition: scaled_data.h:73
size_t dim() const
Returns dimension of the scaled data.
Definition: scaled_data.h:66
void reset()
Resets configurations to their initial values.
Definition: scaled_data.cpp:79
Storage of data of used algorithms and input events.
Definition: state.h:50
DataModel data
Definition: state.h:51
ScaledData scaled
Definition: state.h:54
TransData trans
Definition: state.h:53
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
Definition: trans_data.h:99
size_t dim() const
Returns dimension of the transformed data.
Definition: trans_data.h:93
void reset()
Resets configurations to their initial values.
Definition: trans_data.cpp:128
std::vector< TransConfig > config
Separate configurations for each dimension.
Definition: trans_data.h:84
UiScaler()
Definition: ui_scale.cpp:24
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding scale&transform widgets.
Definition: ui_scale.cpp:30
bool show_window
If the scale&transform window should be rendered.
Definition: ui_scale.h:34
static constexpr float slider_width
Width of the sliders in the table.
Definition: ui_scale.h:37
static bool reset_button()
ImGUI wrapper for reset button.
Definition: utils_imgui.hpp:59