IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 25, 2010, 3:22:33 PM (16 years ago)
Author:
eugene
Message:

merge changes from eam_branches/ipp-20100823

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackCombineFinal.c

    r28405 r29552  
    9393
    9494    // Sum covariance matrices
     95    // the array may be defined, but no covariances actually supplied.
     96    bool haveCovariances = false;
    9597    if (covariances) {
     98        for (int i = 0; i < covariances->n; i++) {
     99            haveCovariances |= (covariances->data[i] != NULL);
     100        }
     101    }
     102
     103    if (haveCovariances) {
    96104        outRO->covariance = psImageCovarianceAverageWeighted(covariances, options->weightings);
    97105    } else {
Note: See TracChangeset for help on using the changeset viewer.