BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Public Member Functions | Public Attributes | List of all members
ClusterData Struct Reference

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...
 

Detailed Description

Storage of data used for cluster coloring.

Definition at line 36 of file cluster_data.h.

Member Function Documentation

◆ add_cluster()

void ClusterData::add_cluster ( )

Definition at line 170 of file cluster_data.cpp.

◆ do_brushing()

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.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ do_cluster_coloring()

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.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ reset()

void ClusterData::reset ( )

Definition at line 176 of file cluster_data.cpp.

Here is the caller graph for this function:

Member Data Documentation

◆ active_cluster

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.

◆ cluster_cnt

int ClusterData::cluster_cnt

Count of the clusters used in cluster coloring.

Definition at line 45 of file cluster_data.h.

◆ cluster_col

int ClusterData::cluster_col

Index of the column used in cluster coloring.

Definition at line 43 of file cluster_data.h.

◆ clusters

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.

◆ default_cluster_color

const glm::vec3 ClusterData::default_cluster_color
Initial value:
= { 17.0f / 255.0f,
170.0f / 255.0f,
222.0f / 255.0f }

Definition at line 38 of file cluster_data.h.

◆ last_id

int ClusterData::last_id

Last used id, new cluster will get this value plus one.

Definition at line 56 of file cluster_data.h.

◆ radius_size

float ClusterData::radius_size

Size of the brushing radius circle for mouse.

Definition at line 59 of file cluster_data.h.


The documentation for this struct was generated from the following files: