IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1146


Ignore:
Timestamp:
Jun 30, 2004, 12:09:04 AM (22 years ago)
Author:
Paul Price
Message:

Added APIs for reading in an FPA.

File:
1 edited

Legend:

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

    r1113 r1146  
    2222/************************************************************************************************************/
    2323
     24/* Reading in an image */
     25
     26/** Generate an FPA structure on the basis of the configuration file */
     27psFPA *psFPAGenerate(FILE *config,      ///< Configuration file, already open
     28                     const char *fpaName ///< FPA name to generate for
     29                     );
     30
     31/** Read all pixel data into a generated FPA structure */
     32psFPA *psFPAReadAll(psFPA *in           ///< FPA to read into, and output
     33                    );
     34
     35/** Read only a particular chip */
     36psFPA *psFPAReadChip(psFPA *in,         ///< FPA to read into, and output
     37                     const char *chipName ///< Chip name to read
     38                     );
     39
     40/** Read only a particular cell into a chip that has been set up with psFPAGenerate */
     41psChip *psChipReadCell(psChip *in,      ///< Chip to read into, and output
     42                       const char *cellName ///< Cell name to read
     43                       );
     44
     45/** Read only a particular readout into a cell that has been set up with psFPAGenerate */
     46psCell *psCellReadReadout(psCell *in,   ///< Cell to read into, and output
     47                          const char *readoutName ///< Readout name to read
     48                          );
     49
     50
     51/************************************************************************************************************/
     52
    2453/* Convolution */
    2554
Note: See TracChangeset for help on using the changeset viewer.