Changeset 25911 for branches/pap/ppStack/src/ppStackConvolve.c
- Timestamp:
- Oct 21, 2009, 1:03:45 PM (17 years ago)
- File:
-
- 1 edited
-
branches/pap/ppStack/src/ppStackConvolve.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap/ppStack/src/ppStackConvolve.c
r25830 r25911 39 39 options->weightings = psVectorAlloc(num, PS_TYPE_F32); // Combination weightings for images (1/noise^2) 40 40 psVectorInit(options->weightings, 0.0); 41 options->covariances = psArrayAlloc(num); // Covariance matrices 41 options->origCovars = psArrayAlloc(num); 42 options->convCovars = psArrayAlloc(num); // Covariance matrices 42 43 43 44 psList *fpaList = psListAlloc(NULL); // List of input FPAs, for concept averaging … … 79 80 // Background subtraction, scaling and normalisation is performed automatically by the image matching 80 81 psTimerStart("PPSTACK_MATCH"); 82 options->origCovars->data[i] = psMemIncrRefCounter(readout->covariance); 81 83 if (!ppStackMatch(readout, options, i, config)) { 82 84 psErrorStackPrint(stderr, "Unable to match image %d --- ignoring.", i); … … 85 87 continue; 86 88 } 87 options->co variances->data[i] = psMemIncrRefCounter(readout->covariance);89 options->convCovars->data[i] = psMemIncrRefCounter(readout->covariance); 88 90 89 91 if (options->stats) {
Note:
See TracChangeset
for help on using the changeset viewer.
