BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_color.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_color.h"
21
22#include "imgui_stdlib.h"
23#include "vendor/IconsFontAwesome5.h"
24#include "vendor/colormap/palettes.hpp"
25
26#include "utils_imgui.hpp"
27
29 : show_window(false)
30{
31}
32
33void
34UiColorSettings::render(State &state, ImGuiWindowFlags window_flags)
35{
36 if (!show_window) {
38 return;
39 }
40
41 auto column_combo = [&](const std::string &combo_name, int &column_ind) {
42 ImGui::Text("Column for colors:");
43 auto dim = state.data.names.size();
44 if (!dim) {
45 ImGui::Text("No columns are present.");
46 return;
47 }
48
49 if (ImGui::BeginCombo(combo_name.data(),
50 state.data.names[column_ind].c_str())) {
51 bool ret = false;
52 for (size_t i = 0; i < dim; ++i) {
53 bool is_selected = (int)i == column_ind;
54 if (ImGui::Selectable(state.data.names[i].c_str(),
55 &is_selected)) {
56 column_ind = i;
57 ret = true;
58 }
59 }
60
61 if (ret)
62 state.colors.touch_config();
63 ImGui::EndCombo();
64 }
65 };
66
67 if (ImGui::Begin("Color", &show_window, window_flags)) {
68 ImGui::Text("Style of coloring:");
69
70 if (reset_button()) {
71 state.colors.reset();
72 }
73
74 if (ImGui::RadioButton("Expression",
75 &state.colors.coloring,
76 (int)ColorData::Coloring::EXPR))
77 state.colors.touch_config();
78
79 if (ImGui::RadioButton("Discretized clusters",
80 &state.colors.coloring,
81 (int)ColorData::Coloring::CLUSTER))
82 state.colors.touch_config();
83
84 if (ImGui::RadioButton("Brushing",
85 &state.colors.coloring,
86 (int)ColorData::Coloring::BRUSHING))
87 state.colors.touch_config();
88
89 if (ImGui::SliderFloat("Alpha##color",
90 &state.colors.alpha,
91 0.0f,
92 1.0f,
93 "%.3f",
94 ImGuiSliderFlags_AlwaysClamp))
95 state.colors.touch_config();
96
97 ImGui::Separator();
98
99 switch (state.colors.coloring) {
100 case (int)ColorData::Coloring::EXPR: {
101 column_combo("##columnsexpr", state.colors.expr_col);
102
103 ImGui::Text("Color palette:");
104 if (ImGui::BeginCombo("##palettes",
105 state.colors.col_palette.c_str())) {
106 bool ret = false;
107 for (auto &[name, _] : colormap::palettes) {
108 bool is_selected = name == state.colors.col_palette;
109 if (ImGui::Selectable(name.c_str(), &is_selected)) {
110 state.colors.col_palette = name;
111 ret = true;
112 }
113 }
114
115 if (ret)
116 state.colors.touch_config();
117 ImGui::EndCombo();
118 }
119
120 if (ImGui::Checkbox("Reverse color palette",
121 &state.colors.reverse))
122 state.colors.touch_config();
123 } break;
124 case int(ColorData::Coloring::CLUSTER):
125 column_combo("##columnscluster",
127
128 if (ImGui::SliderInt("Cluster count",
130 1,
131 50))
132 state.colors.touch_config();
133
134 break;
135 case int(ColorData::Coloring::BRUSHING):
136 auto &clustering = state.colors.clustering;
137 auto cluster_size = clustering.clusters.size();
138 if (cluster_size != 0) {
139 ImGui::SliderFloat("Radius##mouseradiuscircle",
141 1.0f,
142 100.0f,
143 "%.3f",
144 ImGuiSliderFlags_AlwaysClamp);
145
146 ImGui::RadioButton("None", &clustering.active_cluster, -1);
147 }
148
149 for (auto iter = clustering.clusters.begin();
150 iter != clustering.clusters.end();) {
151 int i = iter->first;
152
153 // Skip none cluster, it is there only for
154 // exporting the data.
155 if (iter->first == -1) {
156 ++iter;
157 continue;
158 }
159
160 ImGui::RadioButton(
161 ("##BrushingCluster" + std::to_string(i)).data(),
162 &clustering.active_cluster,
163 int(i));
164
165 ImGui::SameLine();
166 ImGui::ColorEdit3(
167 ("##ClusterColor" + std::to_string(i)).data(),
168 (float *)&clustering.clusters[i].first,
169 ImGuiColorEditFlags_NoInputs |
170 ImGuiColorEditFlags_NoLabel |
171 ImGuiColorEditFlags_AlphaPreview);
172 ImGui::SameLine();
173 ImGui::InputText(
174 ("##ClusterName" + std::to_string(i)).data(),
175 &clustering.clusters[i].second);
176 ImGui::SameLine();
177 if (ImGui::Button(
178 (ICON_FA_TIMES "##" + std::to_string(i)).data())) {
179 clustering.active_cluster = -1;
180 iter = clustering.clusters.erase(iter);
182 } else {
183 ++iter;
184 }
185 tooltip("Remove cluster");
186 }
187
188 if (ImGui::Button("+ Add cluster")) {
189 clustering.add_cluster();
190 }
191 break;
192 }
193
194 ImGui::End();
195 }
196}
int active_cluster
Index of the active cluster (into clusters) that is used for brushing.
Definition: cluster_data.h:53
int cluster_col
Index of the column used in cluster coloring.
Definition: cluster_data.h:43
std::map< int, std::pair< glm::vec3, std::string > > clusters
Cluster colors and names for brushing, with id of cluster as a key.
Definition: cluster_data.h:49
float radius_size
Size of the brushing radius circle for mouse.
Definition: cluster_data.h:59
int cluster_cnt
Count of the clusters used in cluster coloring.
Definition: cluster_data.h:45
void reset()
Resets color settings to their initial values.
Definition: color_data.cpp:121
bool reverse
Flag indicating if the colors of the color palette should be reversed.
Definition: color_data.h:76
float alpha
Alpha channel of RGBA color.
Definition: color_data.h:73
int expr_col
Index of the column used in expression coloring.
Definition: color_data.h:67
void reset_landmark_color(int id)
Reset colors and cluster ids of all landmarks in the cluster with input id.
Definition: color_data.cpp:104
ClusterData clustering
Definition: color_data.h:71
void touch_config()
Definition: color_data.h:118
int coloring
Type of the coloring method.
Definition: color_data.h:65
std::string col_palette
Name of the currently used color palette.
Definition: color_data.h:69
std::vector< std::string > names
Names of the dimensions.
Definition: data_model.h:37
Storage of data of used algorithms and input events.
Definition: state.h:50
DataModel data
Definition: state.h:51
ColorData colors
Definition: state.h:63
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding color settings widgets.
Definition: ui_color.cpp:34
bool show_window
If the color settings window should be rendered.
Definition: ui_color.h:33
static bool reset_button()
ImGUI wrapper for reset button.
Definition: utils_imgui.hpp:59
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.
Definition: utils_imgui.hpp:36