IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 22, 2008, 9:28:00 AM (18 years ago)
Author:
Paul Price
Message:

Merging in branch development. ppStack now works with incremental reads. Needs some cleanup, but it works.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStack.h

    r15844 r16605  
    1919    );
    2020
     21// Determine target PSF for input images
     22pmPSF *ppStackPSF(const pmConfig *config, // Configuration
     23                  int numCols, int numRows, // Size of image
     24                  const psList *list    // List of input PSFs
     25    );
     26
    2127// Perform stacking on a readout
    22 bool ppStackReadout(pmConfig *config,   // Configuration
    23                     const pmFPAview *view // View for readout
     28bool ppStackReadout(const pmConfig *config,   // Configuration
     29                    pmReadout *outRO,   // Output readout
     30                    const psArray *readouts, // Input readouts
     31                    const psArray *regions, // Array with array of regions used in each PSF matching
     32                    const psArray *kernels // Array with array of kernels used in each PSF matching
     33    );
     34
     35// Perform photometry on stack
     36bool ppStackPhotometry(pmConfig *config, // Configuration
     37                       const pmReadout *readout, // Readout to be photometered
     38                       const pmFPAview *view // View to readout
    2439    );
    2540
     
    3550
    3651/// Convolve image to match specified seeing
    37 bool ppStackMatch(pmReadout *output,    ///< Convolved readout
    38                   const pmReadout *input, ///< Readout to be convolved
     52bool ppStackMatch(pmReadout *readout, ///< Readout to be convolved; replaced with output
     53                  psArray **regions, // Array of regions used in each PSF matching, returned
     54                  psArray **kernels, // Array of kernels used in each PSF matching, returned
    3955                  const pmReadout *sourcesRO, ///< Readout with sources
    4056                  const pmPSF *psf,     ///< Target PSF
Note: See TracChangeset for help on using the changeset viewer.