Byakuren 1.0.1
A theme color extracting library implemented by C.
Loading...
Searching...
No Matches
mix.h
Go to the documentation of this file.
1
8#ifndef LIB_MIX_H_
9#define LIB_MIX_H_
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#include "../bkr_common.h"
16
48 uint32_t pixel_count,
49 uint32_t octree_max_colors,
50 bkr_mindiff_parameter* mindiff_param,
51 bkr_color_stats stats[]);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif // LIB_MIX_H_
int bkr_mix_calculate_color_stats(bkr_rgb *pixels, uint32_t pixel_count, uint32_t octree_max_colors, bkr_mindiff_parameter *mindiff_param, bkr_color_stats stats[])
Byakuren - A theme color extracting library implemented by C.
Color statistics structure.
Definition bkr_common.h:103
Parameters for the minimum difference color quantization method.
Definition bkr_common.h:156
RGB color structure.
Definition bkr_common.h:90