Index: /branches/eam_branches/ipp-20101103/psLib/test/imageops/tap_psImageInterpolate3.c
===================================================================
--- /branches/eam_branches/ipp-20101103/psLib/test/imageops/tap_psImageInterpolate3.c	(revision 29681)
+++ /branches/eam_branches/ipp-20101103/psLib/test/imageops/tap_psImageInterpolate3.c	(revision 29682)
@@ -96,20 +96,20 @@
 	psStatsInit(stats);
 	psVectorStats(stats, pt0, NULL, NULL, 0);
-	fprintf (stderr, "pt 0 : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", IMAGE_STDEV, stats->sampleStdev, stats->sampleMean);
+	fprintf (stderr, "pt 0 (pixel %5.2f,%5.2f) : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", xCenter + 0.5, yCenter + 0.5, IMAGE_STDEV, stats->sampleStdev, stats->sampleMean);
 
         interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter + 0.5, yCenter + 0.5, interp);
 	psStatsInit(stats);
 	psVectorStats(stats, pt1, NULL, NULL, 0);
-	fprintf (stderr, "pt 1 : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
+	fprintf (stderr, "pt 1 (pixel %5.2f,%5.2f) : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", xCenter + 0.5, yCenter + 0.5, sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
 	
         interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter + 0.5, yCenter, interp);
 	psStatsInit(stats);
 	psVectorStats(stats, pt2, NULL, NULL, 0);
-	fprintf (stderr, "pt 2 : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
+	fprintf (stderr, "pt 2 (pixel %5.2f,%5.2f) : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", xCenter + 0.5, yCenter + 0.0, sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
 	
         interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter, yCenter, interp);
 	psStatsInit(stats);
 	psVectorStats(stats, pt3, NULL, NULL, 0);
-	fprintf (stderr, "pt 3 : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
+	fprintf (stderr, "pt 3 (pixel %5.2f,%5.2f) : pred: %6.3f, meas: %6.3f (mean: %6.3f)\n", xCenter + 0.0, yCenter + 0.0, sqrt(varianceVal), stats->sampleStdev, stats->sampleMean);
 
 	psFree (stats);
