- Timestamp:
- Sep 6, 2021, 10:24:58 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-dev-20210817/ppImage/src/ppImageSetThreads.c
r18823 r41805 4 4 5 5 #include "ppImage.h" 6 7 /** NOTE 2021.09.03 : these functions are not currently being used **/ 6 8 7 9 bool ppImageThread_ppImageDetrendReadout (psThreadJob *job) { … … 15 17 } 16 18 19 bool ppImageThread_ppImageDetrendPatternApplyCell (psThreadJob *job) { 20 21 pmConfig *config = job->args->data[0]; 22 ppImageOptions *options = job->args->data[1]; 23 pmFPAview *view = job->args->data[2]; 24 25 bool status = ppImageDetrendPatternApplyCell (config, fpa, chip, cell, view, options); 26 return status; 27 } 28 17 29 bool ppImageSetThreads () { 18 30 19 psThreadTask *task = NULL; 20 21 task = psThreadTaskAlloc ("PPIMAGE_DETREND_READOUT", 3); 31 if (0) { 32 psThreadTask *task = psThreadTaskAlloc ("PPIMAGE_DETREND_READOUT", 3); 22 33 task->function = &ppImageThread_ppImageDetrendReadout; 23 34 psThreadTaskAdd (task); 35 } 24 36 37 { 38 psThreadTask *task = psThreadTaskAlloc("PPIMAGE_PATTERN_ROW_CELL", 7); 39 task->function = &ppImageThread_ppImageDetrendPatternApplyCell; 40 psThreadTaskAdd(task); 41 psFree(task); 42 } 25 43 return true; 26 44 }
Note:
See TracChangeset
for help on using the changeset viewer.
