IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 28, 2009, 2:33:51 PM (17 years ago)
Author:
Paul Price
Message:

Changing pmReadout.weight to variance. Adding pmReadout.covariance which will carry around a covariance pseudo-matrix, allowing us to calculate the pixel-to-pixel variance. pmReadout.covariance now exists and is set, but no mechanism yet to read/write, or use it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_20090128/psModules/src/imcombine/pmSubtractionThreads.c

    r19765 r21211  
    2727        psMutexInit(ro->image);
    2828    }
    29     if (ro->weight) {
    30         psMutexInit(ro->weight);
     29    if (ro->variance) {
     30        psMutexInit(ro->variance);
    3131    }
    3232
     
    4343        psMutexDestroy(ro->image);
    4444    }
    45     if (ro->weight) {
    46         psMutexDestroy(ro->weight);
     45    if (ro->variance) {
     46        psMutexDestroy(ro->variance);
    4747    }
    4848
Note: See TracChangeset for help on using the changeset viewer.