Changeset 5552 for trunk/psModules/src/imsubtract
- Timestamp:
- Nov 18, 2005, 2:55:18 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/imsubtract/pmSubtractBias.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imsubtract/pmSubtractBias.c
r5516 r5552 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2005-11-1 5 20:09:03$8 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-11-19 00:55:18 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 304 304 } 305 305 306 out->knots = psVectorCopy(out->knots, in->knots, in->knots->type.type); 306 // XXX: use psVectorCopy if they get it working. 307 out->knots = psVectorAlloc(in->knots->n, in->knots->type.type); 308 for (psS32 i = 0 ; i < in->knots->n ; i++) { 309 out->knots->data.F32[i] = in->knots->data.F32[i]; 310 } 311 /* 312 out->knots = psVectorCopy(out->knots, in->knots, in->knots->type.type); 313 */ 307 314 308 315 out->p_psDeriv2 = (psF32 *) psAlloc((in->n + 1) * sizeof(psF32)); … … 1184 1191 if (overscan == true) { 1185 1192 pmOverscanAxis overScanAxis = GetOverscanAxis(in); 1186 1187 1193 // 1188 1194 // Create a psStats data structure and determine the highest
Note:
See TracChangeset
for help on using the changeset viewer.
