Changeset 5258 for trunk/psModules/test/imcombine
- Timestamp:
- Oct 10, 2005, 11:59:27 AM (21 years ago)
- Location:
- trunk/psModules/test/imcombine
- Files:
-
- 2 edited
-
tst_pmImageCombine.c (modified) (3 diffs)
-
verified/tst_pmImageCombine.stdout (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/test/imcombine/tst_pmImageCombine.c
r5169 r5258 10 10 * XXX: Must test masks with pmRejectPixels() 11 11 * 12 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2005- 09-28 20:42:52$12 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-10-10 21:58:34 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 276 276 psPixels *myPixels = (psPixels *) questionablePixels->data[i]; 277 277 for (psS32 p = 0 ; p < myPixels->n ; p++) { 278 printf("Image %d, questionable pixel %d is (%d %d)\n", i, p, myPixels->data[p].y, myPixels->data[p].x); 278 printf("Image %d, questionable pixel %d is (%f %f)\n", 279 i, p, myPixels->data[p].y, myPixels->data[p].x); 279 280 } 280 281 } … … 318 319 319 320 for (psS32 p = 0 ; p < myPixels->n ; p++) { 320 printf("Image %d, rejected pixel %d is (% d %d)\n", i, p,321 printf("Image %d, rejected pixel %d is (%f %f)\n", i, p, 321 322 myPixels->data[p].y, myPixels->data[p].x); 322 323 } -
trunk/psModules/test/imcombine/verified/tst_pmImageCombine.stdout
r5169 r5258 19 19 Calling with a NULL stats. Should generate error, return NULL. 20 20 Calling with acceptable data. Should generate a psImage. 21 Image 1, questionable pixel 0 is (0 8)22 Image 1, questionable pixel 1 is (1 2)23 Image 1, questionable pixel 2 is (3 9)24 Image 1, questionable pixel 3 is (4 5)25 Image 1, questionable pixel 4 is (3 8)26 Image 2, questionable pixel 0 is (9 9)27 Image 2, questionable pixel 1 is (0 5)28 Image 2, questionable pixel 2 is (6 2)29 Image 2, questionable pixel 3 is (3 7)30 Image 3, questionable pixel 0 is (7 5)21 Image 1, questionable pixel 0 is (0.000000 8.000000) 22 Image 1, questionable pixel 1 is (1.000000 2.000000) 23 Image 1, questionable pixel 2 is (3.000000 9.000000) 24 Image 1, questionable pixel 3 is (4.000000 5.000000) 25 Image 1, questionable pixel 4 is (3.000000 8.000000) 26 Image 2, questionable pixel 0 is (9.000000 9.000000) 27 Image 2, questionable pixel 1 is (0.000000 5.000000) 28 Image 2, questionable pixel 2 is (6.000000 2.000000) 29 Image 2, questionable pixel 3 is (3.000000 7.000000) 30 Image 3, questionable pixel 0 is (7.000000 5.000000) 31 31 32 32 … … 35 35 tst_pmImageCombine.c: Image 0 had 0 rejects. 36 36 tst_pmImageCombine.c: Image 1 had 4 rejects. 37 Image 1, rejected pixel 0 is (0 8)38 Image 1, rejected pixel 1 is (1 2)39 Image 1, rejected pixel 2 is (4 5)40 Image 1, rejected pixel 3 is (3 8)37 Image 1, rejected pixel 0 is (0.000000 8.000000) 38 Image 1, rejected pixel 1 is (1.000000 2.000000) 39 Image 1, rejected pixel 2 is (4.000000 5.000000) 40 Image 1, rejected pixel 3 is (3.000000 8.000000) 41 41 tst_pmImageCombine.c: Image 2 had 3 rejects. 42 Image 2, rejected pixel 0 is (0 5)43 Image 2, rejected pixel 1 is (6 2)44 Image 2, rejected pixel 2 is (3 7)42 Image 2, rejected pixel 0 is (0.000000 5.000000) 43 Image 2, rejected pixel 1 is (6.000000 2.000000) 44 Image 2, rejected pixel 2 is (3.000000 7.000000) 45 45 tst_pmImageCombine.c: Image 3 had 1 rejects. 46 Image 3, rejected pixel 0 is (7 5)46 Image 3, rejected pixel 0 is (7.000000 5.000000) 47 47 tst_pmImageCombine.c: Image 4 had 0 rejects.
Note:
See TracChangeset
for help on using the changeset viewer.
