22#include "vendor/colormap/palettes.hpp"
29 if (td.
n !=
data.size()) {
30 data.resize(td.
n, glm::vec4(0, 0, 0, 0));
48 const size_t max_points =
62 case int(ColorData::Coloring::EXPR): {
66 auto pal = colormap::palettes.at(
col_palette).rescale(0, 1);
70 for (; rn-- > 0; ++ri) {
77 data[ri] = glm::vec4(c.channels[0].val / 255.0f,
78 c.channels[1].val / 255.0f,
79 c.channels[2].val / 255.0f,
84 case int(ColorData::Coloring::CLUSTER):
87 case int(ColorData::Coloring::BRUSHING):
98 for (
auto &&i : idxs) {
size_t next(float T, float t)
Computes size of the next batch.
float pnormf(float x, float mean, float sd)
void clean(const Dirt &d)
Call this when the cache is refreshed.
bool dirty(const Dirt &d)
Returns true if the cache needs to be refreshed.
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)
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)
void update(const TransData &td, const LandmarkModel &lm, FrameStats &frame_stats)
Recomputes color of the 2D data points if user has changed any of the color settings.
void reset()
Resets color settings to their initial values.
void color_landmarks(const std::vector< size_t > &idxs)
Notifies Sweeper that the color settings has been modified and that the data has to be recomputed.
std::vector< std::pair< const glm::vec3 *, int > > landmarks
Colors of the landmarks and id of the cluster.
bool reverse
Flag indicating if the colors of the color palette should be reversed.
float alpha
Alpha channel of RGBA color.
int expr_col
Index of the column used in expression coloring.
void reset_landmark_color(int id)
Reset colors and cluster ids of all landmarks in the cluster with input id.
void remove_landmark(size_t ind)
int coloring
Type of the coloring method.
void color_landmark(size_t ind)
Color the landmark according to the active cluster.
std::string col_palette
Name of the currently used color palette.
std::vector< glm::vec4 > data
Colors of the 2D data points.
const glm::vec3 default_landmark_color
BatchSizeGen batch_size_gen
void store_time(float &to)
Model of the high- and low-dimensional landmarks.
size_t n_landmarks() const
Reurns number of the 2D landmarks.
std::tuple< size_t, size_t > dirty_range(const Dirts &d)
Find the range to refresh.
void clean_range(const Dirts &d, size_t n)
Clean a range of the cache.
void refresh(const Dirts &d)
Force-refresh the whole range.
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.
std::vector< float > sums
Array representing sums for each dimension.
std::vector< float > sqsums
Array representing square sums for each dimension.