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,12 +598,14 @@ class run(object):
#configObj.filtStrength = filtStrength #configObj.filtStrength = filtStrength
configObj.filterCoherence('[Function-2]') configObj.filterCoherence('[Function-2]')
configObj.igram = configObj.filtIgram # skip phase unwrapping if input method == no
configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1] if self.unwMethod.lower() != 'no':
configObj.noMCF = noMCF configObj.igram = configObj.filtIgram
configObj.master = os.path.join(self.slcDir,stackMaster +'/data') configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1]
configObj.defoMax = defoMax configObj.noMCF = noMCF
configObj.unwrap('[Function-3]') configObj.master = os.path.join(self.slcDir,stackMaster +'/data')
configObj.defoMax = defoMax
configObj.unwrap('[Function-3]')
configObj.finalize() configObj.finalize()
self.runf.write(self.text_cmd+'stripmapWrapper.py -c '+ configName+'\n') self.runf.write(self.text_cmd+'stripmapWrapper.py -c '+ configName+'\n')