IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14007


Ignore:
Timestamp:
Jul 3, 2007, 1:52:18 PM (19 years ago)
Author:
eugene
Message:

update to new ppStatsFPA API

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeCombine.c

    r13939 r14007  
    286286                        data->stats = psMetadataAlloc();
    287287                    }
    288                     if (!ppStats(data->stats, data->out, view, options->combine->maskVal, config)) {
     288                    if (!ppStatsFPA(data->stats, data->out, view, options->combine->maskVal, config)) {
    289289                        psError(PS_ERR_UNEXPECTED_NULL, true, "Unable to generate stats for image.\n");
    290290                        return false;
  • trunk/ppStack/src/ppStackLoop.c

    r13667 r14007  
    8787            // Perform statistics on the cell
    8888            if (stats) {
    89                 ppStats(stats, input->fpa, view, maskBlank, config);
     89                ppStatsFPA(stats, input->fpa, view, maskBlank, config);
    9090            }
    9191
  • trunk/ppSub/src/ppSubLoop.c

    r13665 r14007  
    142142                    return false;
    143143                }
    144                 ppStats(stats, output->fpa, view, maskVal, config);
     144                ppStatsFPA(stats, output->fpa, view, maskVal, config);
    145145            }
    146146
  • trunk/pswarp/src/pswarpLoop.c

    r13904 r14007  
    211211    // Perform statistics on the output image
    212212    if (stats) {
    213         if (!ppStats(stats, output->parent->parent->parent, view, maskBad | maskPoor, config)) {
     213        if (!ppStatsFPA(stats, output->parent->parent->parent, view, maskBad | maskPoor, config)) {
    214214            psWarning("Unable to perform statistics on warped image.");
    215215        }
Note: See TracChangeset for help on using the changeset viewer.