Changeset 9596 for trunk/psModules/src/camera/pmFPAMosaic.h
- Timestamp:
- Oct 16, 2006, 4:33:55 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPAMosaic.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAMosaic.h
r7487 r9596 1 /// @file pmFPAMosaic.h 2 /// 3 /// @brief Functions to mosaic FPA components into a single entity 4 /// 5 /// @ingroup Camera 6 /// 7 /// @author Paul Price, IfA 8 /// @author Eugene Magnier, IfA 9 /// 10 /// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 11 /// @date $Date: 2006-10-17 02:33:55 $ 12 /// 13 /// Copyright 2005-2006 Institute for Astronomy, University of Hawaii 14 /// 15 1 16 #ifndef PM_CHIP_MOSAIC_H 2 17 #define PM_CHIP_MOSAIC_H … … 4 19 #include "pmFPA.h" 5 20 6 // Mosaic all cells within a chip 21 /// Mosaic all cells within a chip 22 /// 23 /// Mosaics all cells within the source into a single cell within the target (which must have only a single 24 /// cell). Cells are placed on the chip according to the CELL.X0 and CELL.Y0 offsets. This is useful for 25 /// getting an image of the chip on the sky. The mosaicking is done so as to avoid performing a deep copy of 26 /// the pixels, if possible. 7 27 bool pmChipMosaic(pmChip *target, // Target chip --- may contain only a single cell 8 28 const pmChip *source // Source chip whose cells will be mosaicked 9 29 ); 10 30 11 // Mosaic all cells within an FPA 31 /// Mosaic all cells within an FPA 32 /// 33 /// Mosaics all cells within the source into a single chip with single cell within the target (which must have 34 /// only a single chip with single cell). Cells are placed on the FPA according to the CHIP.X0, CHIP.Y0, 35 /// CELL.X0 and CELL.Y0 offsets. This is useful for getting an image of the FPA on the sky. The mosaicking 36 /// is done so as to avoid performing a deep copy of the pixels, if possible. 12 37 bool pmFPAMosaic(pmFPA *target, // Target FPA --- may contain only a single chip with a single cell 13 38 const pmFPA *source // FPA whose chips and cells will be mosaicked
Note:
See TracChangeset
for help on using the changeset viewer.
