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