forked from tTh/FloatImg
debug debug messages
This commit is contained in:
parent
3ef1fdf02e
commit
603194451a
|
@ -221,6 +221,10 @@ int fimg_lissage_2x2(FloatImg *img)
|
|||
{
|
||||
int foo;
|
||||
|
||||
#if DEBUG_LEVEL
|
||||
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
|
||||
#endif
|
||||
|
||||
foo = fimg_lissage_2x2_a(img);
|
||||
if (foo) {
|
||||
fprintf(stderr, "%s: fail %d\n", __func__, foo);
|
||||
|
@ -238,7 +242,9 @@ int fimg_lissage_3x3(FloatImg *img)
|
|||
int foo;
|
||||
FloatImg tmp;
|
||||
|
||||
#if DEBUG_LEVEL
|
||||
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
|
||||
#endif
|
||||
|
||||
static FimgFilter3x3 lowpass = {
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue