Changeset 1323
- Timestamp:
- Jul 28, 2004, 4:01:10 PM (22 years ago)
- Location:
- trunk/psLib
- Files:
-
- 5 edited
-
src/image/psImageStats.c (modified) (2 diffs)
-
src/image/psImageStats.h (modified) (2 diffs)
-
src/imageops/psImageStats.c (modified) (2 diffs)
-
src/imageops/psImageStats.h (modified) (2 diffs)
-
test/dataManip/verified/tst_psHist02.stdout (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageStats.c
r1261 r1323 80 80 psImage *in, 81 81 psImage *mask, 82 int maskVal)82 unsigned int maskVal) 83 83 { 84 84 psVector *junkData=NULL; … … 113 113 } 114 114 115 out = ps HistogramVector(out, junkData, junkMask, maskVal);115 out = psVectorHistogram(out, junkData, junkMask, maskVal); 116 116 117 117 psFree(junkMask); -
trunk/psLib/src/image/psImageStats.h
r1292 r1323 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07-2 4 02:00:21$12 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-29 02:00:27 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 35 35 psImage *in, ///< Image data to be histogramed. 36 36 psImage *mask, ///< mask data for image (NULL ok) 37 int maskVal);///< mask Mask for mask37 unsigned int maskVal); ///< mask Mask for mask 38 38 39 39 /// Fit a 2-D polynomial surface to an image. -
trunk/psLib/src/imageops/psImageStats.c
r1261 r1323 80 80 psImage *in, 81 81 psImage *mask, 82 int maskVal)82 unsigned int maskVal) 83 83 { 84 84 psVector *junkData=NULL; … … 113 113 } 114 114 115 out = ps HistogramVector(out, junkData, junkMask, maskVal);115 out = psVectorHistogram(out, junkData, junkMask, maskVal); 116 116 117 117 psFree(junkMask); -
trunk/psLib/src/imageops/psImageStats.h
r1292 r1323 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07-2 4 02:00:21$12 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-29 02:00:27 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 35 35 psImage *in, ///< Image data to be histogramed. 36 36 psImage *mask, ///< mask data for image (NULL ok) 37 int maskVal);///< mask Mask for mask37 unsigned int maskVal); ///< mask Mask for mask 38 38 39 39 /// Fit a 2-D polynomial surface to an image. -
trunk/psLib/test/dataManip/verified/tst_psHist02.stdout
r1321 r1323 139 139 /***************************** TESTPOINT ******************************************\ 140 140 * TestFile: tst_psHist02.c * 141 * TestPoint: psStats functions{Calling ps HistogramVector() with various NULL inputs.} *141 * TestPoint: psStats functions{Calling psVectorHistogram() with various NULL inputs.} * 142 142 * TestType: Positive * 143 143 \**********************************************************************************/ 144 144 145 145 146 ---> TESTPOINT PASSED (psStats functions{Calling ps HistogramVector() with various NULL inputs.} | tst_psHist02.c)146 ---> TESTPOINT PASSED (psStats functions{Calling psVectorHistogram() with various NULL inputs.} | tst_psHist02.c) 147 147 148 148 /***************************** TESTPOINT ******************************************\
Note:
See TracChangeset
for help on using the changeset viewer.
