예제 #1
0
파일: pStir.py 프로젝트: CCPPETMR/xSTIR
 def process(self):
     if self.image is None:
         raise error('current estimate not set')
     handle = pystir.cSTIR_runReconstruction(self.handle, self.image.handle)
     _check_status(handle)
     pyiutil.deleteDataHandle(handle)
예제 #2
0
 def reconstruct(self, image):
     handle = pystir.cSTIR_runReconstruction(self.handle, image.handle)
     _check_status(handle)
     pystir.deleteDataHandle(handle)
예제 #3
0
파일: pStir.py 프로젝트: CCPPETMR/xSTIR
 def reconstruct(self, image):
     handle = pystir.cSTIR_runReconstruction(self.handle, image.handle)
     _check_status(handle)
     pyiutil.deleteDataHandle(handle)