Changeset 1073 for trunk/psLib/src/image/psImageStats.c
- Timestamp:
- Jun 23, 2004, 1:00:17 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImageStats.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImageStats.c
r1072 r1073 67 67 68 68 stats = psVectorStats(stats, junkData, junkMask, maskVal); 69 ps VectorFree(junkMask);69 psFree(junkMask); 70 70 } else { 71 71 stats = psVectorStats(stats, junkData, NULL, 0); 72 72 } 73 ps VectorFree(junkData);73 psFree(junkData); 74 74 return(stats); 75 75 } … … 129 129 } 130 130 out = psHistogramVector(out, junkData, junkMask, maskVal); 131 ps VectorFree(junkMask);131 psFree(junkMask); 132 132 } else { 133 133 out = psHistogramVector(out, junkData, NULL, 0); 134 134 } 135 ps VectorFree(junkData);135 psFree(junkData); 136 136 137 137 return(out); … … 339 339 // Free the Chebyshev polynomials that were created in this routine. 340 340 for (i=0;i<maxChebyPoly;i++) { 341 ps Polynomial1DFree(chebPolys[i]);341 psFree(chebPolys[i]); 342 342 } 343 343 psFree(chebPolys); … … 413 413 // Free the Chebyshev polynomials that were created in this routine. 414 414 for (i=0;i<maxChebyPoly;i++) { 415 ps Polynomial1DFree(chebPolys[i]);415 psFree(chebPolys[i]); 416 416 } 417 417 psFree(chebPolys);
Note:
See TracChangeset
for help on using the changeset viewer.
