#include "cluster_data.h"
#include <cmath>
#include <limits>
#include <tuple>
#include <vector>
Go to the source code of this file.
|
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...
|
|
◆ 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] | clusters | The number of colors used in the new color palette. |
[out] | color_palette | Created color palette. |
Definition at line 85 of file cluster_data.cpp.
◆ 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
-
- Returns
- std::tuple<uint8_t, uint8_t, uint8_t> Color in the RGB color system.
Definition at line 35 of file cluster_data.cpp.