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.
27 lines
784 B
27 lines
784 B
![]()
1 year ago
|
/*
|
||
|
RECURSION 'QUADTREE' SUR LES IMAGES
|
||
|
-----------------------------------
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
#include "../floatimg.h"
|
||
|
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* may be we need some private variables ? */
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* nouveau 29 avril 2021, pendant un autre masque-flamme coronavidique */
|
||
|
|
||
|
int fimg_recursion_proto(FloatImg *src, FloatImg *dst, int notused)
|
||
|
{
|
||
|
|
||
|
#if DEBUG_LEVEL
|
||
|
fprintf(stderr, ">>> %s ( %p %p %d )\n", __func__, src, dst, notused);
|
||
|
#endif
|
||
|
|
||
|
return -1;
|
||
|
}
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* -------------------------------------------------------------------- */
|