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)
def reconstruct(self, image): handle = pystir.cSTIR_runReconstruction(self.handle, image.handle) _check_status(handle) pystir.deleteDataHandle(handle)
def reconstruct(self, image): handle = pystir.cSTIR_runReconstruction(self.handle, image.handle) _check_status(handle) pyiutil.deleteDataHandle(handle)