this is romulian saturation control

This commit is contained in:
2020-07-28 08:19:38 +02:00
parent fd10739cc7
commit 4fec59ec64
3 changed files with 54 additions and 2 deletions

View File

@@ -63,7 +63,8 @@ void fimg_print_sizeof(void);
void fimg_printhead(FloatImg *h);
int fimg_describe(FloatImg *head, char *txt);
char *fimg_str_type(int type);
int fimg_plot_rgb (FloatImg *head, int x, int y, float r, float g, float b);
int fimg_plot_rgb (FloatImg *head, int x, int y,
float r, float g, float b);
int fimg_get_rgb(FloatImg *head, int x, int y, float *rgb);
int fimg_put_rgb(FloatImg *head, int x, int y, float *rgb);
int fimg_clear(FloatImg *fimg);
@@ -119,6 +120,10 @@ int fimg_power_2(FloatImg *s, FloatImg *d, double maxval);
int fimg_cos_01(FloatImg *s, FloatImg *d, double maxval);
int fimg_cos_010(FloatImg *s, FloatImg *d, double maxval);
int fimg_mix_rgb_gray(FloatImg *img, float mix);
/* module funcs/geometry.c */
int fimg_equalize_compute(FloatImg *src, void *vptr);