IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2007, 3:04:02 PM (19 years ago)
Author:
Paul Price
Message:

Unifying input and reference masks in a single mask for the subtraction.

File:
1 edited

Legend:

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

    r13511 r13735  
    44 *  @author GLG, MHPCC
    55 *
    6  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    7  *  @date $Date: 2007-05-24 21:17:01 $
     6 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     7 *  @date $Date: 2007-06-09 01:04:02 $
    88 *
    99 *  Copyright 2004-2007 Institute for Astronomy, University of Hawaii
     
    333333//////////////////////////////////////////////////////////////////////////////////////////////////////////////
    334334
     335psImage *pmSubtractionMask(const psImage *inMask, const psImage *refMask, psMaskType maskVal,
     336                           int size, int footprint)
     337{
     338    PS_ASSERT_IMAGE_NON_NULL(inMask, NULL);
     339    PS_ASSERT_IMAGE_TYPE(inMask, PS_TYPE_MASK, NULL);
     340    PS_ASSERT_IMAGE_NON_NULL(refMask, NULL);
     341    PS_ASSERT_IMAGE_TYPE(refMask, PS_TYPE_MASK, NULL);
     342    PS_ASSERT_IMAGES_SIZE_EQUAL(inMask, refMask, NULL);
     343    PS_ASSERT_INT_NONNEGATIVE(size, NULL);
     344    PS_ASSERT_INT_NONNEGATIVE(footprint, NULL);
     345
     346    // Size of the images
     347    int numCols = inMask->numCols;
     348    int numRows = inMask->numRows;
     349
     350    // Worried about the masks for bad pixels and bad stamps colliding, so make our own mask
     351    psImage *mask = psImageAlloc(numCols, numRows, PS_TYPE_MASK); // The global mask
     352    psImageInit(mask, 0);
     353
     354    // Dereference for convenience
     355    psMaskType **maskData = mask->data.PS_TYPE_MASK_DATA;
     356    psMaskType **inData = inMask->data.PS_TYPE_MASK_DATA;
     357    psMaskType **refData = refMask->data.PS_TYPE_MASK_DATA;
     358
     359    // Block out a border around the edge of the image
     360
     361    // Bottom stripe
     362    for (int y = 0; y < PS_MIN(size + footprint, numRows); y++) {
     363        for (int x = 0; x < numCols; x++) {
     364            maskData[y][x] |= PM_SUBTRACTION_MASK_BORDER;
     365        }
     366    }
     367    // Either side
     368    for (int y = PS_MIN(size + footprint, numRows); y < numRows - size - footprint; y++) {
     369        for (int x = 0; x < PS_MIN(size + footprint, numCols); x++) {
     370            maskData[y][x] |= PM_SUBTRACTION_MASK_BORDER;
     371        }
     372        for (int x = PS_MAX(numCols - size - footprint, 0); x < numCols; x++) {
     373            maskData[y][x] |= PM_SUBTRACTION_MASK_BORDER;
     374        }
     375    }
     376    // Top stripe
     377    for (int y = PS_MAX(numRows - size - footprint, 0); y < numRows; y++) {
     378        for (int x = 0; x < numCols; x++) {
     379            maskData[y][x] |= PM_SUBTRACTION_MASK_BORDER;
     380        }
     381    }
     382
     383    // Mask the bad pixels, and around them
     384    for (int y = footprint + size; y < numRows - footprint - size; y++) {
     385        for (int x = 0; x < numCols; x++) {
     386            if (inData[y][x] & maskVal) {
     387                maskData[y][x] |= PM_SUBTRACTION_MASK_INPUT;
     388                // Block out the entire stamp footprint around this pixel
     389                for (int v = y - footprint; v <= y + footprint; v++) {
     390                    for (int u = x - footprint; u <= x + footprint; u++) {
     391                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT;
     392                    }
     393                }
     394            }
     395            if (refData[y][x] & maskVal) {
     396                maskData[y][x] |= PM_SUBTRACTION_MASK_REF;
     397
     398                // We want to block out with the CONVOLVE mask anything that would be bad if we convolved with
     399                // this bad pixel (within 'size').  Then we want to block out with the FOOTPRINT mask
     400                // everything within a footprint's distance of those (within 'footprint').
     401
     402                // Bottom stripe
     403                for (int v = PS_MAX(y - footprint - size, 0); v < PS_MAX(y - size, 0); v++) {
     404                    for (int u = PS_MAX(x - footprint - size, 0);
     405                         u <= PS_MIN(x + footprint + size, numCols - 1); u++) {
     406                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT;
     407                    }
     408                }
     409                // Middle
     410                for (int v = PS_MAX(y - size, 0); v <= PS_MIN(y + size, numRows - 1); v++) {
     411                    // Left side
     412                    for (int u = PS_MAX(x - footprint - size, 0); u < x - size; u++) {
     413                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT;
     414                    }
     415                    // Centre
     416                    for (int u = PS_MAX(x - size, 0); u <= PS_MIN(x + size, numCols - 1); u++) {
     417                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT | PM_SUBTRACTION_MASK_CONVOLVE;
     418                    }
     419                    // Right side
     420                    for (int u = PS_MIN(x + size + 1, numCols - 1);
     421                         u <= PS_MIN(x + footprint + size, numCols - 1); u++) {
     422                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT;
     423                    }
     424                }
     425                // Top stripe
     426                for (int v = PS_MIN(y + size + 1, numRows - 1);
     427                     v <= PS_MIN(y + footprint + size, numRows - 1); v++) {
     428                    for (int u = PS_MAX(x - footprint - size, 0);
     429                         u <= PS_MIN(x + footprint + size, numCols - 1); u++) {
     430                        maskData[v][u] |= PM_SUBTRACTION_MASK_FOOTPRINT;
     431                    }
     432                }
     433            }
     434        }
     435    }
     436
     437    return mask;
     438}
     439
    335440bool pmSubtractionCalculateEquation(psArray *stamps, const psImage *reference, const psImage *input,
    336441                                    const psImage *weight, const pmSubtractionKernels *kernels, int footprint)
     
    550655
    551656int pmSubtractionRejectStamps(psArray *stamps, const psImage *refImage, psImage *inImage,
    552                               psImage *mask, psMaskType badStampMaskVal, const psVector *solution,
    553                               int footprint, float sigmaRej, const pmSubtractionKernels *kernels)
     657                              psImage *subMask, const psVector *solution, int footprint, float sigmaRej,
     658                              const pmSubtractionKernels *kernels)
    554659{
    555660    PS_ASSERT_ARRAY_NON_NULL(stamps, -1);
     
    559664    PS_ASSERT_IMAGE_TYPE(inImage, PS_TYPE_F32, -1);
    560665    PS_ASSERT_IMAGES_SIZE_EQUAL(refImage, inImage, -1);
    561     PS_ASSERT_IMAGE_NON_EMPTY(mask, -1);
    562     PS_ASSERT_IMAGE_TYPE(mask, PS_TYPE_MASK, -1);
    563     PS_ASSERT_IMAGES_SIZE_EQUAL(refImage, mask, -1);
     666    PS_ASSERT_IMAGE_NON_EMPTY(subMask, -1);
     667    PS_ASSERT_IMAGE_TYPE(subMask, PS_TYPE_MASK, -1);
     668    PS_ASSERT_IMAGES_SIZE_EQUAL(refImage, subMask, -1);
    564669    PS_ASSERT_VECTOR_NON_NULL(solution, -1);
    565670    PS_ASSERT_VECTOR_TYPE(solution, PS_TYPE_F64, -1);
     
    654759            for (int y = stamp->y - footprint; y <= stamp->y + footprint; y++) {
    655760                for (int x = stamp->x - footprint; x <= stamp->x + footprint; x++) {
    656                     mask->data.PS_TYPE_MASK_DATA[y][x] |= badStampMaskVal;
     761                    subMask->data.PS_TYPE_MASK_DATA[y][x] |= PM_SUBTRACTION_MASK_REJ;
    657762                }
    658763            }
     
    707812
    708813bool pmSubtractionConvolve(psImage **outImage, psImage **outWeight, psImage **outMask,
    709                            const psImage *inImage, const psImage *inWeight, const psImage *inMask,
    710                            psMaskType maskVal, psMaskType blank,
    711                            const psVector *solution, const pmSubtractionKernels *kernels)
     814                           const psImage *inImage, const psImage *inWeight, const psImage *subMask,
     815                           psMaskType blank, const psVector *solution, const pmSubtractionKernels *kernels)
    712816{
    713817    PS_ASSERT_IMAGE_NON_NULL(inImage, false);
    714818    PS_ASSERT_IMAGE_TYPE(inImage, PS_TYPE_F32, false);
    715     if (inMask) {
    716         PS_ASSERT_IMAGE_NON_NULL(inMask, false);
    717         PS_ASSERT_IMAGE_TYPE(inMask, PS_TYPE_MASK, false);
    718         PS_ASSERT_IMAGES_SIZE_EQUAL(inMask, inImage, false);
     819    if (subMask) {
     820        PS_ASSERT_IMAGE_NON_NULL(subMask, false);
     821        PS_ASSERT_IMAGE_TYPE(subMask, PS_TYPE_MASK, false);
     822        PS_ASSERT_IMAGES_SIZE_EQUAL(subMask, inImage, false);
    719823    }
    720824    if (inWeight) {
     
    733837        PS_ASSERT_IMAGES_SIZE_EQUAL(*outMask, inImage, false);
    734838        PS_ASSERT_IMAGE_TYPE(*outMask, PS_TYPE_MASK, false);
    735         PS_ASSERT_IMAGE_NON_NULL(inMask, false);
     839        PS_ASSERT_IMAGE_NON_NULL(subMask, false);
    736840    }
    737841    if (outWeight && *outWeight) {
     
    763867    }
    764868    psImage *convMask = NULL;           // Convolved mask image
    765     if (outMask && inMask) {
     869    if (outMask && subMask) {
    766870        if (!*outMask) {
    767871            *outMask = psImageAlloc(numCols, numRows, PS_TYPE_MASK);
     
    812916
    813917                    // Check and propagate the kernel footprint, if required
    814                     if (inMask) {
    815                         for (int v = -size; v <= size; v++) {
    816                             for (int u = -size; u <= size; u++) {
    817                                 convMask->data.PS_TYPE_MASK_DATA[y][x] |=
    818                                     inMask->data.PS_TYPE_MASK_DATA[y + v][x + u];
    819                             }
     918                    if (subMask && (subMask->data.PS_TYPE_MASK_DATA[y][x] &
     919                                    (PM_SUBTRACTION_MASK_INPUT | PM_SUBTRACTION_MASK_CONVOLVE))) {
     920                        convMask->data.PS_TYPE_MASK_DATA[y][x] |= blank;
     921                        convImage->data.F32[y][x] = NAN;
     922                        if (inWeight) {
     923                            convWeight->data.F32[y][x] = NAN;
    820924                        }
    821                         if (convMask->data.PS_TYPE_MASK_DATA[y][x] & maskVal) {
    822                             convImage->data.F32[y][x] = NAN;
    823                             if (inWeight) {
    824                                 convWeight->data.F32[y][x] = NAN;
    825                             }
    826                             continue;
    827                         }
     925                        continue;
    828926                    }
    829927
Note: See TracChangeset for help on using the changeset viewer.