IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 15, 2005, 10:09:03 AM (20 years ago)
Author:
gusciora
Message:

SubtractBias was recoded. Significant mods to removeBadPixels.
Additional mods to other files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmReadoutCombine.h

    r5170 r5516  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-09-28 20:43:52 $
     7 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-11-15 20:09:03 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4444                          float readnoise);
    4545
     46/**
     47 *
     48 * This function measures the robust median at each of the minimum and maximum
     49 * coordinates and determines the difference and mean of the two values. The size
     50 * of the box used to make the measurement at each point is specified by the
     51 * configuration variable FRINGE_SQUARE_RADIUS. From the collection of
     52 * differences, the robust median is calculated, and returned as part of the
     53 * fringe statistics. For each fringe point, the values of delta and midValue are
     54 * also assigned and available to the user on return.
     55 *
     56 */
     57psStats *pmFringeStats(
     58    psArray *fringePoints,
     59    psImage *image,
     60    psMetadata *config
     61);
     62
     63typedef struct
     64{
     65    psF64 xMin;
     66    psF64 yMin;
     67    psF64 xMax;
     68    psF64 yMax;
     69    psF64 delta;
     70    psF64 midValue;
     71}
     72pmFringePoint;
     73
    4674#endif
Note: See TracChangeset for help on using the changeset viewer.