BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
|
Storage of data used for cluster coloring. More...
#include <cluster_data.h>
Public Member Functions | |
void | do_cluster_coloring (float alpha, size_t ri, size_t rn, const TransData &td, std::vector< glm::vec4 > &point_colors) |
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) |
void | add_cluster () |
void | reset () |
Public Attributes | |
const glm::vec3 | default_cluster_color |
int | cluster_col |
Index of the column used in cluster coloring. More... | |
int | cluster_cnt |
Count of the clusters used in cluster coloring. More... | |
std::map< int, std::pair< glm::vec3, std::string > > | clusters |
Cluster colors and names for brushing, with id of cluster as a key. More... | |
int | active_cluster |
Index of the active cluster (into clusters) that is used for brushing. More... | |
int | last_id |
Last used id, new cluster will get this value plus one. More... | |
float | radius_size |
Size of the brushing radius circle for mouse. More... | |
Storage of data used for cluster coloring.
Definition at line 36 of file cluster_data.h.
void ClusterData::add_cluster | ( | ) |
Definition at line 170 of file cluster_data.cpp.
void ClusterData::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 | ||
) |
Definition at line 129 of file cluster_data.cpp.
void ClusterData::do_cluster_coloring | ( | float | alpha, |
size_t | ri, | ||
size_t | rn, | ||
const TransData & | td, | ||
std::vector< glm::vec4 > & | point_colors | ||
) |
Definition at line 97 of file cluster_data.cpp.
void ClusterData::reset | ( | ) |
int ClusterData::active_cluster |
Index of the active cluster (into clusters) that is used for brushing.
Definition at line 53 of file cluster_data.h.
int ClusterData::cluster_cnt |
Count of the clusters used in cluster coloring.
Definition at line 45 of file cluster_data.h.
int ClusterData::cluster_col |
Index of the column used in cluster coloring.
Definition at line 43 of file cluster_data.h.
std::map<int, std::pair<glm::vec3, std::string> > ClusterData::clusters |
Cluster colors and names for brushing, with id of cluster as a key.
<cluster id, <color, name>>
Definition at line 49 of file cluster_data.h.
const glm::vec3 ClusterData::default_cluster_color |
Definition at line 38 of file cluster_data.h.
int ClusterData::last_id |
Last used id, new cluster will get this value plus one.
Definition at line 56 of file cluster_data.h.
float ClusterData::radius_size |
Size of the brushing radius circle for mouse.
Definition at line 59 of file cluster_data.h.