BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
cluster_data.cpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#include "cluster_data.h"
20
21#include <cmath>
22#include <limits>
23#include <tuple>
24#include <vector>
25
26/**
27 * @brief Converts hsv color to rgb color system.
28 *
29 * @param h Hue
30 * @param s Saturation
31 * @param v Value
32 * @return std::tuple<uint8_t, uint8_t, uint8_t> Color in the RGB color system.
33 */
34static std::tuple<uint8_t, uint8_t, uint8_t>
35hsv2rgb(float h, float s, float v)
36{
37 float chroma = v * s;
38 float m = v - chroma;
39 h *= 6;
40 int hi = truncf(h);
41 float rest = h - hi;
42 hi %= 6;
43
44 float rgb[3] = { 0, 0, 0 };
45 switch (hi) {
46 case 0:
47 rgb[0] = 1;
48 rgb[1] = rest;
49 break;
50 case 1:
51 rgb[1] = 1;
52 rgb[0] = 1 - rest;
53 break;
54 case 2:
55 rgb[1] = 1;
56 rgb[2] = rest;
57 break;
58 case 3:
59 rgb[2] = 1;
60 rgb[1] = 1 - rest;
61 break;
62 case 4:
63 rgb[2] = 1;
64 rgb[0] = rest;
65 break;
66 case 5:
67 default:
68 rgb[0] = 1;
69 rgb[2] = 1 - rest;
70 break;
71 }
72
73 for (size_t i = 0; i < 3; ++i)
74 rgb[i] = (chroma * rgb[i] + m) * 255;
75 return { rgb[0], rgb[1], rgb[2] };
76}
77
78/**
79 * @brief Creates color palette with the size of the cluster count.
80 *
81 * @param[in] clusters The number of colors used in the new color palette.
82 * @param[out] color_palette Created color palette.
83 */
84static void
86 size_t clusters,
87 std::vector<std::tuple<unsigned char, unsigned char, unsigned char>>
88 &color_palette)
89{
90 color_palette.resize(clusters);
91 for (size_t i = 0; i < clusters; ++i)
92 color_palette[i] = hsv2rgb(
93 float(i) / (clusters), i % 2 ? 1.0f : 0.7f, i % 2 ? 0.7f : 1.0f);
94}
95
96void
98 size_t ri,
99 size_t rn,
100 const TransData &td,
101 std::vector<glm::vec4> &point_colors)
102{
103 size_t n = td.n;
104 size_t d = td.dim();
105
106 if (cluster_col >= d)
107 cluster_col = 0;
108
109 std::vector<std::tuple<unsigned char, unsigned char, unsigned char>> pal;
110
112
113 for (; rn-- > 0; ++ri) {
114 if (ri >= n)
115 ri = 0;
116
117 auto cluster = td.data[ri * d + cluster_col];
118
119 auto [r, g, b] =
120 std::isnan(cluster)
121 ? std::make_tuple<unsigned char, unsigned char, unsigned char>(
122 128, 128, 128)
123 : pal[(int)roundf(cluster) % (cluster_cnt)];
124 point_colors[ri] = glm::vec4(r / 255.0f, g / 255.0f, b / 255.0f, alpha);
125 }
126}
127
128void
130 float alpha,
131 const std::vector<std::pair<const glm::vec3 *, int>> &landmark_colors,
132 const LandmarkModel &lm,
133 size_t ri,
134 size_t rn,
135 const TransData &td,
136 std::vector<glm::vec4> &point_colors)
137{
138 size_t n = td.n;
139 size_t d = td.dim();
140
141 // Loop in a cycle of data.
142 // Compute the closest landmark for each data point
143 // and paint the point according the color of the
144 // landmark.
145 for (; rn-- > 0; ++ri) {
146 if (ri >= n)
147 ri = 0;
148
149 // Find the closest landmark.
150 size_t best = 0;
151 float best_sqdist = std::numeric_limits<float>::infinity();
152 for (size_t i = 0; i < lm.n_landmarks(); ++i) {
153 float sqd = 0;
154 for (size_t di = 0; di < d; ++di)
155 sqd +=
156 pow(lm.hidim_vertices[i * d + di] - td.data[ri * d + di], 2);
157
158 if (sqd < best_sqdist) {
159 best = i;
160 best_sqdist = sqd;
161 }
162 }
163
164 // Color the point with the color of the landmark.
165 point_colors[ri] = glm::vec4(*landmark_colors[best].first, alpha);
166 }
167}
168
169void
171{
172 clusters[++last_id] = std::make_pair(default_cluster_color, "cluster name");
173}
174
175void
177{
178 cluster_col = 0;
179 cluster_cnt = 10;
180
181 active_cluster = -1;
182 last_id = -1;
183
184 radius_size = 40.0f;
185
186 clusters.clear();
187}
static void create_col_palette(size_t clusters, std::vector< std::tuple< unsigned char, unsigned char, unsigned char > > &color_palette)
Creates color palette with the size of the cluster count.
static std::tuple< uint8_t, uint8_t, uint8_t > hsv2rgb(float h, float s, float v)
Converts hsv color to rgb color system.
int active_cluster
Index of the active cluster (into clusters) that is used for brushing.
Definition: cluster_data.h:53
void do_brushing(float alpha, const std::vector< std::pair< const glm::vec3 *, int > > &landmark_colors, const LandmarkModel &lm, size_t ri, size_t rn, const TransData &td, std::vector< glm::vec4 > &point_colors)
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
void do_cluster_coloring(float alpha, size_t ri, size_t rn, const TransData &td, std::vector< glm::vec4 > &point_colors)
int last_id
Last used id, new cluster will get this value plus one.
Definition: cluster_data.h:56
const glm::vec3 default_cluster_color
Definition: cluster_data.h:38
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 add_cluster()
size_t n
Definition: dirty.h:83
Model of the high- and low-dimensional landmarks.
size_t n_landmarks() const
Reurns number of the 2D landmarks.
std::vector< float > hidim_vertices
One-dimensional array storing d-dimensional landmark coordinates in row-major order.
Storage of the transformed data.
Definition: trans_data.h:74
size_t dim() const
Returns dimension of the transformed data.
Definition: trans_data.h:93
std::vector< float > data
Transformed data in the same format as DataModel::data.
Definition: trans_data.h:76