BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Functions
cluster_data.cpp File Reference
#include "cluster_data.h"
#include <cmath>
#include <limits>
#include <tuple>
#include <vector>
Include dependency graph for cluster_data.cpp:

Go to the source code of this file.

Functions

static std::tuple< uint8_t, uint8_t, uint8_t > hsv2rgb (float h, float s, float v)
 Converts hsv color to rgb color system. More...
 
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. More...
 

Function Documentation

◆ create_col_palette()

static void create_col_palette ( size_t  clusters,
std::vector< std::tuple< unsigned char, unsigned char, unsigned char > > &  color_palette 
)
static

Creates color palette with the size of the cluster count.

Parameters
[in]clustersThe number of colors used in the new color palette.
[out]color_paletteCreated color palette.

Definition at line 85 of file cluster_data.cpp.

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

◆ hsv2rgb()

static std::tuple< uint8_t, uint8_t, uint8_t > hsv2rgb ( float  h,
float  s,
float  v 
)
static

Converts hsv color to rgb color system.

Parameters
hHue
sSaturation
vValue
Returns
std::tuple<uint8_t, uint8_t, uint8_t> Color in the RGB color system.

Definition at line 35 of file cluster_data.cpp.

Here is the caller graph for this function: