IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13667


Ignore:
Timestamp:
Jun 5, 2007, 4:16:51 PM (19 years ago)
Author:
Paul Price
Message:

Fixing ppStats following API change.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageLoop.c

    r13229 r13667  
    123123                    return false;
    124124                }
    125                 ppStats(stats, output->fpa, view, config);
     125                ppStats(stats, output->fpa, view,
     126                        options->satMask | options->badMask | options->maskValue,
     127                        config);
    126128            }
    127129
  • trunk/ppMerge/src/ppMergeCombine.c

    r13624 r13667  
    265265            // Statistics on the merged cell
    266266            if (data->statsFile) {
    267                 data->stats = ppStats(data->stats, data->out, view, config); // Statistics for output FPA
     267                data->stats = ppStats(data->stats, data->out, view, options->combine->maskVal,
     268                                      config); // Statistics for output FPA
    268269            }
    269270
  • trunk/ppStack/src/ppStackLoop.c

    r13489 r13667  
    1313bool ppStackLoop(pmConfig *config)
    1414{
     15    psMaskType maskBlank = psMetadataLookupU8(NULL, config->arguments, "MASK.BLANK"); // Mask for blank reg.
     16
    1517    bool mdok;                          // Status of MD lookup
    1618    const char *statsName = psMetadataLookupStr(&mdok, config->arguments, "STATS"); // Filename for statistics
     
    8587            // Perform statistics on the cell
    8688            if (stats) {
    87                 ppStats(stats, input->fpa, view, config);
     89                ppStats(stats, input->fpa, view, maskBlank, config);
    8890            }
    8991
Note: See TracChangeset for help on using the changeset viewer.