allow to enable some debug output.

2005-07-28  Sven Neumann  <sven@gimp.org>

	* app/base/siox.c: allow to enable some debug output.
This commit is contained in:
Sven Neumann 2005-07-28 00:18:39 +00:00 committed by Sven Neumann
parent bd5d41062d
commit 55f7b68c23
2 changed files with 20 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2005-07-28 Sven Neumann <sven@gimp.org>
* app/base/siox.c: allow to enable some debug output.
2005-07-27 Manish Singh <yosh@gimp.org> 2005-07-27 Manish Singh <yosh@gimp.org>
* app/core/gimpdrawable-foreground-extract.c: #include * app/core/gimpdrawable-foreground-extract.c: #include

View File

@ -57,6 +57,9 @@
#define HIGH 254 #define HIGH 254
/* #define DEBUG */
/* Simulate a java.util.ArrayList */ /* Simulate a java.util.ArrayList */
/* These methods are NOT generic */ /* These methods are NOT generic */
@ -373,7 +376,9 @@ stagetwo (lab *points,
{ {
pivotvalue = ((max - min) / 2.0) + min; pivotvalue = ((max - min) / 2.0) + min;
/* g_printerr ("max=%f min=%f pivot=%f\n", max, min, pivotvalue); */ #ifdef DEBUG
g_printerr ("max=%f min=%f pivot=%f\n", max, min, pivotvalue);
#endif
countsm = 0; countsm = 0;
countgr = 0; countgr = 0;
@ -457,9 +462,10 @@ stagetwo (lab *points,
point->a /= (length * 1.0); point->a /= (length * 1.0);
point->b /= (length * 1.0); point->b /= (length * 1.0);
/* g_printerr ("cluster=%f, %f, %f sum=%d\n", #ifdef DEBUG
point->l, point->a, point->b, sum); g_printerr ("cluster=%f, %f, %f sum=%d\n",
*/ point->l, point->a, point->b, sum);
#endif
add_to_list (clusters, point, 1, TRUE); add_to_list (clusters, point, 1, TRUE);
} }
@ -532,7 +538,9 @@ create_signature (lab *input,
curelem = curelem->next; curelem = curelem->next;
} }
/* g_printerr ("step #1 -> %d clusters\n", clusters1size); */ #ifdef DEBUG
g_printerr ("step #1 -> %d clusters\n", clusters1size);
#endif
clusters2 = g_new0 (ArrayList, 1); clusters2 = g_new0 (ArrayList, 1);
@ -545,7 +553,9 @@ create_signature (lab *input,
free_list (clusters2); free_list (clusters2);
free_list (clusters1); free_list (clusters1);
/* g_printerr ("step #2 -> %d clusters\n", returnlength[0]); */ #ifdef DEBUG
g_printerr ("step #2 -> %d clusters\n", returnlength[0]);
#endif
return rval; return rval;
} }