IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2012, 11:53:21 AM (14 years ago)
Author:
mhuber
Message:

adding parts for simple model mean target PSF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/meh_branches/ppstack_test/ppStack/src/ppStackPrepare.c

    r34042 r34046  
    306306    psLogMsg("ppStack", PS_LOG_INFO, "Input FWHMs : %f +/- %f", fwhmStats->clippedMean, fwhmStats->clippedStdev);
    307307
     308    //MEH -- add clippedMean/clippedStdev to options, may want to be part of clipFWHMnSig?
     309    options->clippedMean =  fwhmStats->clippedMean;
     310    options->clippedStdev = fwhmStats->clippedStdev;
     311     
     312
    308313    if (isfinite(clipFWHMnSig)) {
    309314        float fwhmLimit = fwhmStats->clippedMean + clipFWHMnSig * fwhmStats->clippedStdev;
     
    318323    }
    319324
    320     //MEH -- by option could reset maxFWHM and reject any > before going into target ppStackPSF however will be masked and not included in conv/unconv stack in end rather than rej from deconv limit
    321 
    322     //MEH -- could use fwhmStats->clippedMean+X to internally set PSF.OUTPUT.FWHM but called in ppStackPSF and would need to pass it
    323 
    324325
    325326    //MEH - try runnning every thing that can reject images before target psf and conv -
     
    334335    // Generate target PSF
    335336    if (options->convolve) {
    336         options->psf = ppStackPSF(config, numCols, numRows, psfs, options->inputMask);
     337      //        options->psf = ppStackPSF(config, numCols, numRows, psfs, options->inputMask);
     338        options->psf = ppStackPSF(config, numCols, numRows, psfs, options);
    337339        psFree(psfs);
    338340        if (!options->psf) {
Note: See TracChangeset for help on using the changeset viewer.