Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
402 B
23 lines
402 B
![]()
2 years ago
|
/*
|
||
|
* metriques.c
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
/* -------------------------------------------------------------- */
|