34static std::tuple<uint8_t, uint8_t, uint8_t>
44 float rgb[3] = { 0, 0, 0 };
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] };
87 std::vector<std::tuple<unsigned char, unsigned char, unsigned char>>
90 color_palette.resize(clusters);
91 for (
size_t i = 0; i < clusters; ++i)
93 float(i) / (clusters), i % 2 ? 1.0f : 0.7f, i % 2 ? 0.7f : 1.0f);
101 std::vector<glm::vec4> &point_colors)
109 std::vector<std::tuple<unsigned char, unsigned char, unsigned char>> pal;
113 for (; rn-- > 0; ++ri) {
121 ? std::make_tuple<unsigned char, unsigned char, unsigned char>(
124 point_colors[ri] = glm::vec4(r / 255.0f, g / 255.0f, b / 255.0f, alpha);
131 const std::vector<std::pair<const glm::vec3 *, int>> &landmark_colors,
136 std::vector<glm::vec4> &point_colors)
145 for (; rn-- > 0; ++ri) {
151 float best_sqdist = std::numeric_limits<float>::infinity();
154 for (
size_t di = 0; di < d; ++di)
158 if (sqd < best_sqdist) {
165 point_colors[ri] = glm::vec4(*landmark_colors[best].first, alpha);
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.
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.
std::map< int, std::pair< glm::vec3, std::string > > clusters
Cluster colors and names for brushing, with id of cluster as a key.
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.
const glm::vec3 default_cluster_color
float radius_size
Size of the brushing radius circle for mouse.
int cluster_cnt
Count of the clusters used in cluster coloring.
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.
size_t dim() const
Returns dimension of the transformed data.
std::vector< float > data
Transformed data in the same format as DataModel::data.