Changeset 5435 for trunk/psModules/src/imsubtract
- Timestamp:
- Oct 20, 2005, 1:06:24 PM (21 years ago)
- Location:
- trunk/psModules/src/imsubtract
- Files:
-
- 2 edited
-
pmSubtractBias.c (modified) (2 diffs)
-
pmSubtractBias.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imsubtract/pmSubtractBias.c
r5294 r5435 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $9 * @date $Date: 2005-10- 12 21:02:04 $8 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-10-20 23:06:24 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 282 282 XXX: The SDRS does not specify type support. F32 is implemented here. 283 283 *****************************************************************************/ 284 pmReadout *pmSubtractBias(pmReadout *in, 285 void *fitSpec, 286 const psList *overscans, 287 pmOverscanAxis overScanAxis, 288 psStats *stat, 289 psS32 nBinOrig, 290 pmFit fit, 291 const pmReadout *bias) 284 pmReadout *pmSubtractBias( 285 pmReadout *in, 286 void *fitSpec, 287 pmFit fit, 288 bool overscan, 289 psStats *stat, 290 int nBin, 291 const pmReadout *bias, 292 const pmReadout *dark 293 ) 292 294 { 293 295 psTrace(".psModule.pmSubtracBias.pmSubtractBias", 4, -
trunk/psModules/src/imsubtract/pmSubtractBias.h
r5170 r5435 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2005- 09-28 20:43:52$8 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-10-20 23:06:24 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 38 38 } pmFit; 39 39 40 pmReadout *pmSubtractBias(pmReadout *in, ///< The input pmReadout image 41 void *fitSpec, ///< A polynomial or spline, defining the fit type. 42 const psList *overscans, ///< A psList of overscan images 43 pmOverscanAxis overScanAxis, ///< Defines how overscans are applied 44 psStats *stat, ///< The statistic to be used in combining overscan data 45 int nBin, ///< The amount of binning to be done image pixels. 46 pmFit fit, ///< PM_FIT_SPLINE, PM_FIT_POLYNOMIAL, or PM_FIT_NONE 47 const pmReadout *bias); ///< A possibly NULL bias pmReadout which is to be subtracted 40 pmReadout *pmSubtractBias( 41 pmReadout *in, ///< The input pmReadout image 42 void *fitSpec, ///< A polynomial or spline, defining the fit type. 43 pmFit fit, ///< PM_FIT_SPLINE, PM_FIT_POLYNOMIAL, or PM_FIT_NONE 44 bool overscan, 45 psStats *stat, ///< The statistic to be used in combining overscan data 46 int nBin, ///< The amount of binning to be done image pixels. 47 const pmReadout *bias, ///< A possibly NULL bias pmReadout which is to be subtracted 48 const pmReadout *dark ///< A possibly NULL bias pmReadout which is to be subtracted 49 ) 50 // OLD: remove this 51 // const psList *overscans, ///< A psList of overscan images 52 // pmOverscanAxis overScanAxis, ///< Defines how overscans are applied 48 53 49 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
