Stack: skip PU if input method is "no"

LT1AB
Zhang Yunjun 2020-04-28 15:59:34 -07:00 committed by piyushrpt
parent d41ffb0ce9
commit 34fb0b66fa
1 changed files with 8 additions and 6 deletions

View File

@ -598,6 +598,8 @@ class run(object):
#configObj.filtStrength = filtStrength #configObj.filtStrength = filtStrength
configObj.filterCoherence('[Function-2]') configObj.filterCoherence('[Function-2]')
# skip phase unwrapping if input method == no
if self.unwMethod.lower() != 'no':
configObj.igram = configObj.filtIgram configObj.igram = configObj.filtIgram
configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1] configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1]
configObj.noMCF = noMCF configObj.noMCF = noMCF