2020-11-10 02:07:30 +01:00
|
|
|
/*
|
|
|
|
* metriques.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2020-11-10 03:58:18 +01:00
|
|
|
#include "../floatimg.h"
|
|
|
|
|
2020-11-10 02:07:30 +01:00
|
|
|
extern int verbosity;
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------- */
|
|
|
|
|
|
|
|
int get_float_metric(FloatImg *pimg, float *where, int whot)
|
|
|
|
{
|
|
|
|
|
|
|
|
#if DEBUG_LEVEL
|
|
|
|
fprintf(stderr, ">>> %s ( %p %f %d )\n", __func__, pimg, where, whot);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*where = 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* -------------------------------------------------------------- */
|