(self, img)
| 26 | return sinos_gt, sinos_enhanced, img_ril, reconstructed_img |
| 27 | |
| 28 | def ril(self, img): |
| 29 | # return ril results of enhanced sinograms |
| 30 | if len(img.shape) == 4: |
| 31 | img = img.squeeze(1) |
| 32 | return self.ril_odl(img).unsqueeze(1) |
| 33 | |
| 34 | def radon_senet_gt(self, img): |
| 35 | # return supervision of Sinogram_recon_module |