IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 6, 2005, 6:43:52 PM (21 years ago)
Author:
Paul Price
Message:

Importing current working PAP version (many bug fixes since this branch) straight on top of this version, and tidying up a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pois/src/poisMakeMask.c

    r3792 r5717  
    4141            // Mask all around something that's saturated in the reference, since it gets convolved
    4242            // But only mask single pixel in the input image, since it doesn't get convolved
    43             if (refImage->data.F32[y][x] >= config->refSat || refImage->data.F32[y][x] <= config->bad ||
     43            if (refImage->data.F32[y][x] >= config->refSat || refImage->data.F32[y][x] <= config->refBad ||
    4444                isnan(refImage->data.F32[y][x])) {
    4545                mask->data.U8[y][x] |= POIS_MASK_BAD;
     
    5353                    }
    5454                }
    55             } else if (inImage->data.F32[y][x] >= config->inSat || inImage->data.F32[y][x] <= config->bad ||
     55            } else if (inImage->data.F32[y][x] >= config->inSat || inImage->data.F32[y][x] <= config->inBad ||
    5656                isnan(inImage->data.F32[y][x])) {
    5757                mask->data.U8[y][x] |= POIS_MASK_BAD;
Note: See TracChangeset for help on using the changeset viewer.