9 Image create_lut(
int channels,
int width,
int points, std::vector<T> data);
14 inline Image scale_lut(
int width,
int x0,
int x1,
Image in)
17 Image out(in.depth(), width, 1, 3);
19 out.draw_image(0, in, x0, 0);
void resize(int width, int height)
Resize image, using a simple pixel scaling attribution (not the best, but fast)
Definition image.cpp:319