IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 926


Ignore:
Timestamp:
Jun 8, 2004, 9:46:02 AM (22 years ago)
Author:
Paul Price
Message:

Was missing both x and y components of the shift vector. Made this
separate x and y vectors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/modules/include/phase2.h

    r918 r926  
    2525
    2626/** Returns the kernel of OT shifts made during the course of the exposure. */
    27 psImage *psPhase2GetKernel(psVector *shifts ///< List of OT shifts, from which the kernel will be calculated
     27psImage *psPhase2GetKernel(psVector *xShifts, ///< List of OT shifts in x; integers
     28                           psVector *yShifts ///< List of OT shifts in y; integers; xshifts->n == yShifts->n
    2829                           );
    2930
     
    109110                             );
    110111
    111 /** Subtracts the sky background. */
     112/** Subtracts the sky background. Needs work. */
    112113psReadout *psPhase2SubtractSky(psReadout *in, ///< Input image to be sky-subtracted, and output
    113114                               psPolynomial2D *poly, ///< Polynomial specification, returns coeffcients
     
    121122/** Returns an image that has the bad pixels masked.  Also masks saturated pixels */
    122123psReadout *psPhase2MaskBadPixels(psReadout *in ///< Image to be masked, and output
    123                                  const psImage *mask ///< Bad pixel mask to apply
     124                                 const psImage *mask, ///< Bad pixel mask to apply
     125                                 int maskVal, ///< Mask the pixels for which mask & maskVal > 0.
     126                                 int grow ///< Radius to grow the bad pixels
    124127                                 );
    125128
Note: See TracChangeset for help on using the changeset viewer.