birthday new func: fimg_equalize

This commit is contained in:
tTh
2022-09-14 12:01:33 +02:00
parent 1b598227c3
commit e6379f6338
2 changed files with 46 additions and 2 deletions

View File

@@ -20,8 +20,11 @@
* https://git.tetalab.org/tTh/FloatImg
*/
#define FIMG_VERSION (197)
#define FIMG_VERSION (198)
#define RELEASE_NAME ("noname")
/* XXX add a test for stdint.h / uint32_t XXX */
/*
* in memory descriptor of a floating image
*/
@@ -228,8 +231,9 @@ int fimg_classif_trial(FloatImg *src, FloatImg*dst, float fval, int notused);
int fimg_qsort_rgb_a(FloatImg *psrc, FloatImg *pdst, int notused);
int fimg_qsort_rgb_b(FloatImg *psrc, FloatImg *pdst, int notused);
/* module funcs/??????.c */
/* module funcs/equalize.c */
int fimg_equalize_compute(FloatImg *src, void *vptr, float vmax);
int fimg_equalize(FloatImg *src, float vmax);
int fimg_mk_gray_from(FloatImg *src, FloatImg*dst, int k);
int fimg_desaturate(FloatImg *src, FloatImg *dst, int notused);