IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 22, 2010, 8:34:28 PM (16 years ago)
Author:
Paul Price
Message:

Adding exposure map (both exposure time and number of inputs) to the outputs of ppStack. These are calculated both for the regular (convolved) and unconvolved stacks. These should compress pretty well, but I haven't enabled the compression yet. I also plan to add a weighted exposure time output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmSubtractionMask.c

    r27365 r27400  
    9292                    continue;
    9393                }
     94                if (imageData1[y][x] > 50000) {
     95                    maskData1[y][x] = maskVal;
     96                    numBad++;
     97                    continue;
     98                }
     99                if (imageData2[y][x] > 50000) {
     100                    maskData2[y][x] = maskVal;
     101                    numBad++;
     102                    continue;
     103                }
    94104                xMin = PS_MIN(xMin, x);
    95105                xMax = PS_MAX(xMax, x);
Note: See TracChangeset for help on using the changeset viewer.