IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27403


Ignore:
Timestamp:
Mar 23, 2010, 9:25:12 AM (16 years ago)
Author:
Paul Price
Message:

Ignore rejected images when growing list of rejected pixels.

File:
1 edited

Legend:

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

    r27402 r27403  
    3030    psArray *reject = psArrayAlloc(options->num); // Pixels rejected for each image
    3131    for (int i = 0; i < options->num; i++) {
     32        if (options->inputMask->data.U8[i]) {
     33            continue;
     34        }
    3235        if (grow) {
    3336            reject->data[i] = pmStackRejectGrow(options->rejected->data[i], numCols, numRows, poorFrac,
Note: See TracChangeset for help on using the changeset viewer.