diff options
| author | Edoardo Pasca <edo.paskino@gmail.com> | 2017-11-02 18:03:16 +0000 | 
|---|---|---|
| committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-19 14:26:06 +0000 | 
| commit | a7e8dbb62570de374f11401cfeea9b602f33b81f (patch) | |
| tree | a066c3a73b1eaf91c891997278ded4922ffcbd52 /src | |
| parent | 40af17d9f220f953a0794e6d1a9530f30d7dd763 (diff) | |
| download | regularization-a7e8dbb62570de374f11401cfeea9b602f33b81f.tar.gz regularization-a7e8dbb62570de374f11401cfeea9b602f33b81f.tar.bz2 regularization-a7e8dbb62570de374f11401cfeea9b602f33b81f.tar.xz regularization-a7e8dbb62570de374f11401cfeea9b602f33b81f.zip  | |
removed prints
Diffstat (limited to 'src')
| -rw-r--r-- | src/Python/ccpi/reconstruction/AstraDevice.py | 10 | 
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Python/ccpi/reconstruction/AstraDevice.py b/src/Python/ccpi/reconstruction/AstraDevice.py index b403f69..57435f8 100644 --- a/src/Python/ccpi/reconstruction/AstraDevice.py +++ b/src/Python/ccpi/reconstruction/AstraDevice.py @@ -23,21 +23,13 @@ class AstraDevice(DeviceModel):              self.acquisition_data_geometry['cameraY'],              self.acquisition_data_geometry['angles'],              ) -        print ("Astra device created:") -        print ("Camera : {0}x{1}".format(self.proj_geom['DetectorColCount'], -               self.proj_geom['DetectorRowCount'])) -        print ("number of projections " , len(self.proj_geom['ProjectionAngles']))          self.vol_geom = astra.creators.create_vol_geom(              self.reconstructed_volume_geometry['X'],              self.reconstructed_volume_geometry['Y'],              self.reconstructed_volume_geometry['Z']              ) -        print ("Reconstruction volume:") -        print ("[{0},{1},{2}]".format(self.vol_geom['GridColCount'], -                                      self.vol_geom['GridRowCount'], -                                      self.vol_geom['GridSliceCount'])) - +              def doForwardProject(self, volume):          '''Forward projects the volume according to the device geometry  | 
