IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2013, 1:15:38 PM (13 years ago)
Author:
watersc1
Message:

psphot: disable the v2 hack in the significance image, as well as the SOFTEN.VARIANCE option. ppImage: use video darks instead of video masks. This also defines a recipe I was using for testing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotSignificanceImage.c

    r34086 r35688  
    102102                smooth_wt->data.F32[j][i] = 0.0;
    103103            } else {
    104                 // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right??
    105                 float v2 = value + PS_SQR(value/100.0);
    106                 smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i];
     104              // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right??
     105              //              float v2 = value + PS_SQR(value/100.0);
     106              // CZW 2013-06-20: I don't think this hack was helping.
     107              float v2 = value;
     108              smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i];
    107109            }
    108110        }
Note: See TracChangeset for help on using the changeset viewer.