BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
cluster_data.h
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#ifndef CLUSTER_DATA_H
20#define CLUSTER_DATA_H
21
22#include <glm/glm.hpp>
23
24#include <map>
25#include <string>
26#include <tuple>
27#include <vector>
28
29#include "landmark_model.h"
30#include "trans_data.h"
31
32/**
33 * @brief Storage of data used for cluster coloring.
34 *
35 */
37{
38 const glm::vec3 default_cluster_color = { 17.0f / 255.0f,
39 170.0f / 255.0f,
40 222.0f / 255.0f };
41
42 /** Index of the column used in cluster coloring. */
44 /** Count of the clusters used in cluster coloring. */
46
47 /** Cluster colors and names for brushing, with id of cluster as a key.
48 * <cluster id, <color, name>>*/
49 std::map<int, std::pair<glm::vec3, std::string>> clusters;
50
51 /** Index of the active cluster (into @ref clusters) that is used for
52 * brushing.*/
54
55 /** Last used id, new cluster will get this value plus one.*/
57
58 /** Size of the brushing radius circle for mouse.*/
60
61 void do_cluster_coloring(float alpha,
62 size_t ri,
63 size_t rn,
64 const TransData &td,
65 std::vector<glm::vec4> &point_colors);
66 void do_brushing(
67 float alpha,
68 const std::vector<std::pair<const glm::vec3 *, int>> &landmark_colors,
69 const LandmarkModel &lm,
70 size_t ri,
71 size_t rn,
72 const TransData &td,
73 std::vector<glm::vec4> &point_colors);
74
75 void add_cluster();
76
77 void reset();
78};
79
80#endif
Storage of data used for cluster coloring.
Definition: cluster_data.h:37
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()
Model of the high- and low-dimensional landmarks.
Storage of the transformed data.
Definition: trans_data.h:74