IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2007, 10:45:00 AM (19 years ago)
Author:
Paul Price
Message:

Adding boxcar/gaussian smoothing of overscan vector

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/detrend/pmBias.h

    r13810 r13920  
    55 * @author Paul Price, IfA
    66 *
    7  * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    8  * @date $Date: 2007-06-14 02:03:29 $
     7 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     8 * @date $Date: 2007-06-20 20:45:00 $
    99 * Copyright 2004--2006 Institute for Astronomy, University of Hawaii
    1010 */
     
    3434{
    3535    // Inputs
    36     bool single;                ///< Reduce all overscan regions to a single value?
    37     pmFit fitType;              ///< Type of fit to overscan
    38     unsigned int order;         ///< Order of polynomial, or number of spline pieces
    39     psStats *stat;              ///< Statistic to use when reducing the minor direction
     36    bool single;                        ///< Reduce all overscan regions to a single value?
     37    pmFit fitType;                      ///< Type of fit to overscan
     38    unsigned int order;                 ///< Order of polynomial, or number of spline pieces
     39    psStats *stat;                      ///< Statistic to use when reducing the minor direction
     40    int boxcar;                         ///< Boxcar smoothing radius
     41    float gauss;                        ///< Gaussian smoothing sigma
    4042    // Outputs
    41     psPolynomial1D *poly;       ///< Result of polynomial fit
    42     psSpline1D *spline;         ///< Result of spline fit
     43    psPolynomial1D *poly;               ///< Result of polynomial fit
     44    psSpline1D *spline;                 ///< Result of spline fit
    4345}
    4446pmOverscanOptions;
     
    4648/// Allocator for overscan options
    4749pmOverscanOptions *pmOverscanOptionsAlloc(bool single, ///< Reduce all overscan regions to a single value?
    48         pmFit fitType, ///< Type of fit to overscan
    49         unsigned int order, ///< Order of polynomial, or number of splines
    50         psStats *stat ///< Statistic to use
     50                                          pmFit fitType, ///< Type of fit to overscan
     51                                          unsigned int order, ///< Order of polynomial, or number of splines
     52                                          psStats *stat, ///< Statistic to use
     53                                          int boxcar, ///< Boxcar smoothing radius
     54                                          float gauss ///< Gaussian smoothing sigma
    5155                                         );
    5256
Note: See TracChangeset for help on using the changeset viewer.