- Timestamp:
- Nov 8, 2021, 7:57:10 AM (5 years ago)
- Location:
- branches/eam_branches/ipp-20211108/ppStack
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/ppStackLoop.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20211108/ppStack
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/IPP-308_move_backups_folder/ppStack merged eligible /branches/czw_branch/20160809/ppStack merged eligible /branches/czw_branch/20170908/ppStack merged eligible /branches/eam_branches/ipp-20191011/ppStack merged eligible /branches/eam_branches/ipp-dev-20210817/ppStack merged eligible /branches/eam_branches/ppStack.20211015 merged eligible /tags/ipp-ps1-20210510/ppStack merged eligible /tags/ipp-ps1-20210708/ppStack merged eligible /branches/ipp-259_genericise_backups/ppStack 40910-40966
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/eam_branches/ipp-20211108/ppStack/src/ppStackLoop.c
r41529 r41908 31 31 ppStackMemDump("prepare"); 32 32 if (options->quality) return true; // Can't do anything else 33 34 // if we want to skip the rejection steps, and instead use a percentile clipping: 35 if (options->clipPercent) { 36 bool result = ppStackLoopByPercent (config, options); 37 return result; 38 } 33 39 34 40 // Convolve inputs … … 88 94 pmCellFreeData(options->cells->data[i]); 89 95 } 90 // MEH -- must uncomment back out -- unclear is should be moved after pixel rejection96 // MEH -- must uncomment back out -- unclear is should be moved after pixel rejection 91 97 psFree(stack); 92 98 … … 126 132 return false; 127 133 } 128 } 129 else { 134 } else { 130 135 // Since we haven't convolved, I believe we do need to normalize here. 131 //MEH -- see below for comment on ppStackCombineFinal and bscaleOffset 132 if (!ppStackCombineFinal(stack, options->convCovars, options, config, false, true, true, true)) { 136 // MEH -- see below for comment on ppStackCombineFinal and bscaleOffset 137 // last 4 parameters are: safe, normalize, grow, bscaleoffset 138 // EAM : looks like we do NOT need to normalize here eithr because ppStackConvolve is still called and 139 // the inputs are normalized 140 if (!ppStackCombineFinal(stack, options->convCovars, options, config, false, false, true, true)) { 133 141 psError(psErrorCodeLast(), false, "Unable to perform final combination."); 134 142 psFree(stack); … … 154 162 return false; 155 163 } 156 ppStackFileActivation(config,PPSTACK_FILES_BKG ,false); 164 ppStackFileActivation(config, PPSTACK_FILES_BKG, false); 165 157 166 // Photometry 158 167 psTrace("ppStack", 1, "Photometering stacked image....\n"); … … 184 193 return false; 185 194 } 186 // MEH -- also must uncomment back out..195 // MEH -- also must uncomment back out.. 187 196 psFree(stack); 188 197 psLogMsg("ppStack", PS_LOG_INFO, "Stage 7: Cleanup, WCS & JPEGS: %f sec", psTimerClear("PPSTACK_STEPS"));
Note:
See TracChangeset
for help on using the changeset viewer.
