procFrgSP.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef _PROC_FRG_SP_H
00015 #define _PROC_FRG_SP_H
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 void procFrgSP (
00037 MidiFiles *fileNames,
00038 UserOptions *options,
00039 int *error,
00040 cpl_parameterlist *parlist,
00041 cpl_frameset *frameset);
00042
00043 void cleanupFrgSP (
00044 enum ProcessingMode processing,
00045 ImageFormat *formatInterf,
00046 ImageFormat *formatPhotomA,
00047 ImageFormat *formatPhotomB,
00048 CompressedData *compressedInterf,
00049 CompressedData *compressedPhotomA,
00050 CompressedData *compressedPhotomB,
00051 int *error,
00052 CorrectedFrames *corrFrames);
00053
00054 void applyOpticalCompensation (
00055 MidiFiles *fileNames,
00056 ImageFormat *format,
00057 CompressedData *compressedInterf,
00058 CompressedData *compressedPhotomA,
00059 CompressedData *compressedPhotomB,
00060 int *error,
00061 cpl_parameterlist *parlist,
00062 cpl_frameset *frameset);
00063
00064 void getCompensatedBeams (
00065 TransferRatios *trr,
00066 ImageFormat *format,
00067 CompressedData *compressedInterf,
00068 CompressedData *compressedPhotomA,
00069 CompressedData *compressedPhotomB);
00070
00071
00072 #endif
00073
00074
00075