IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 7, 2008, 6:06:05 PM (18 years ago)
Author:
Paul Price
Message:

Adding feature: overlap between consecutive reads. If you're doing something like convolution, this will be a handy feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPARead.h

    r16365 r16366  
    44 * @author Paul Price, IfA
    55 *
    6  * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-02-08 03:16:12 $
     6 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-02-08 04:06:05 $
    88 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii
    99 */
     
    1919                   psFits *fits,        ///< FITS file from which to read
    2020                   int z,               ///< Readout number/plane; zero-offset indexing
    21                    int numScans         ///< Number of scans (rows/cols) to read
     21                   int numScans,        ///< Number of scans (rows/cols) to read
     22                   int overlap          ///< Overlap between consecutive reads
    2223    );
    2324
     
    2526///
    2627/// Allows reading the readout incrementally
    27 bool pmReadoutReadChunk(pmReadout *readout,  ///< Readout of interest
    28                         psFits *fits,        ///< FITS file from which to read
    29                         int z,               ///< Readout number/plane; zero-offset indexing
    30                         int numScans         ///< Number of scans (rows/cols) to read
     28bool pmReadoutReadChunk(pmReadout *readout, ///< Readout of interest
     29                        psFits *fits,   ///< FITS file from which to read
     30                        int z,          ///< Readout number/plane; zero-offset indexing
     31                        int numScans,   ///< Number of scans (rows/cols) to read
     32                        int overlap     ///< Overlap between consecutive reads
    3133    );
    3234
     
    9193                       psFits *fits,    ///< FITS file from which to read
    9294                       int z,           ///< Readout number/plane; zero-offset indexing
    93                        int numScans     ///< Number of scans (rows/cols) to read
     95                       int numScans,    ///< Number of scans (rows/cols) to read
     96                       int overlap      ///< Overlap between consecutive reads
    9497    );
    9598
     
    100103                            psFits *fits, ///< FITS file from which to read
    101104                            int z,      ///< Readout number/plane; zero-offset indexing
    102                             int numScans ///< Number of scans (rows/cols) to read
     105                            int numScans, ///< Number of scans (rows/cols) to read
     106                            int overlap ///< Overlap between consecutive reads
    103107    );
    104108
     
    139143                         psFits *fits,  ///< FITS file from which to read
    140144                         int z,         ///< Readout number/plane; zero-offset indexing
    141                          int numScans   ///< Number of scans (rows/cols) to read
     145                         int numScans,  ///< Number of scans (rows/cols) to read
     146                         int overlap    ///< Overlap between consecutive reads
    142147    );
    143148
     
    146151/// Allows reading the readout incrementally
    147152bool pmReadoutReadChunkWeight(pmReadout *readout, ///< Readout of interest
    148                             psFits *fits, ///< FITS file from which to read
    149                             int z,      ///< Readout number/plane; zero-offset indexing
    150                             int numScans ///< Number of scans (rows/cols) to read
     153                              psFits *fits, ///< FITS file from which to read
     154                              int z,    ///< Readout number/plane; zero-offset indexing
     155                              int numScans, ///< Number of scans (rows/cols) to read
     156                              int overlap ///< Overlap between consecutive reads
    151157    );
    152158
Note: See TracChangeset for help on using the changeset viewer.