imagequant/mediancut.h

7 lines
216 B
C
Raw Normal View History

2020-07-25 00:55:50 +00:00
#ifndef MEDIANCUT_H
#define MEDIANCUT_H
2016-11-20 00:38:15 +00:00
LIQ_PRIVATE colormap *mediancut(histogram *hist, unsigned int newcolors, const double target_mse, const double max_mse, void* (*malloc)(size_t), void (*free)(void*));
2020-07-25 00:55:50 +00:00
#endif