Changeset 6817 for trunk/ppImage/src/ppImage.h
- Timestamp:
- Apr 7, 2006, 5:57:23 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImage.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImage.h
r6747 r6817 2 2 #define PP_IMAGE_H 3 3 4 #include <stdio.h> 4 5 #include "pslib.h" 5 6 #include "psmodules.h" 6 7 #include "ppImageData.h"8 7 #include "ppImageOptions.h" 8 #include "ppMem.h" 9 9 10 10 #define RECIPE_NAME "PHASE2" // Name of the recipe to use … … 15 15 16 16 // Determine what type of camera, and initialise 17 bool ppImageParseCamera(ppImageData *data, // The data to be processed 18 pmConfig *config // Configuration 19 ); 20 17 bool ppImageParseDetrend(ppImageOptions *options, pmConfig *config); 21 18 22 19 // Loop over the input 23 bool ppImageLoop(ppImage Data *data, ppImageOptions *options, pmConfig *config);20 bool ppImageLoop(ppImageOptions *options, pmConfig *config); 24 21 25 // Load the pixels for the given file 26 bool ppImageLoadPixels(ppFile *input, // File for which to load the pixels 27 psDB *db, // Database handle (for reading concepts) 28 int nChip, // Chip number to load 29 int nCell // Cell number to load 30 ); 22 // perform the detrend analysis on the current readout 23 bool ppImageDetrendReadout (ppImageOptions *options, pmConfig *config, pmFPAview *view); 31 24 32 bool ppImageParseDetrend(ppImageData *data, ppImageOptions *options, pmConfig *config); 25 bool ppImageDetrendBias(pmReadout *inputReadout, pmReadout *bias, pmReadout *dark, ppImageOptions *options); 26 bool ppImageDetrendMask(pmReadout *input, pmReadout *mask); 33 27 34 bool ppReadoutWeights(pmReadout *readout); 35 36 #if 0 37 // These functions are not implemented, or not needed 38 pmReadout* ppDetrendPedestal(pmReadout *pedestal, pmCell *input, pmReadout *bias, pmReadout *dark, float darkTime, ppImageOptions *options); 39 bool ppImageOutput(ppImageData *data, pmConfig *config); 40 bool ppImagePhot(ppImageData *data, ppImageOptions *options, pmConfig *config); 41 bool ppFileOpen(ppFile *fpa, char *name, bool doThis); 42 #endif 28 bool ppImageDetrendNonLinear(pmReadout *input, ppImageOptions *options); 29 bool ppImageDetrendNonLinearLookup(pmReadout *input, psMetadataItem *dataItem); 30 bool ppImageDetrendNonLinearPolynomial(pmReadout *input, psMetadataItem *dataItem); 43 31 44 32 #endif // Pau.
Note:
See TracChangeset
for help on using the changeset viewer.
