Reference for pyronn/ct_reconstruction/helpers/trajectories/circular_trajectory.py
pyronn.ct_reconstruction.helpers.trajectories.circular_trajectory.circular_trajectory_2d
Generates the central ray vectors defining a circular trajectory for use with the 2d projection layers.
Args: geometry: 2d Geometry class including angular_range and number_of_projections Returns: Central ray vectors as np.array.
Source code in pyronn/ct_reconstruction/helpers/trajectories/circular_trajectory.py
pyronn.ct_reconstruction.helpers.trajectories.circular_trajectory.circular_trajectory_3d
circular_trajectory_3d(number_of_projections, angular_range, detector_spacing, detector_origin, source_isocenter_distance, source_detector_distance, swap_detector_axis, **kwargs)
Generates the projection matrices defining a circular trajectory around the z-axis
for use with the 3d projection layers.
Adapted from CONRAD Source code https://github.com/akmaier/CONRAD.
Args: geometry: 3d Geometry class including angular_range, number_of_projections, source_detector_distance, detector_spacing, volume_origin, volume_shape and volume_spacing. Returns: Projection matrices with shape (num_projections, 3, 4) as np.array.
Source code in pyronn/ct_reconstruction/helpers/trajectories/circular_trajectory.py
pyronn.ct_reconstruction.helpers.trajectories.circular_trajectory.multi_circular_trajectory_3d
multi_circular_trajectory_3d(number_of_projections, longtitude, angular_range, detector_spacing, detector_origin, source_isocenter_distance, source_detector_distance, swap_detector_axis, **kwargs)
Generates the projection matrices defining a circular trajectory around the z-axis
for use with the 3d projection layers.
Adapted from CONRAD Source code https://github.com/akmaier/CONRAD.
Args: geometry: 3d Geometry class including angular_range, number_of_projections, source_detector_distance, detector_spacing, volume_origin, volume_shape and volume_spacing. Returns: Projection matrices with shape (num_projections, 3, 4) as np.array.
Source code in pyronn/ct_reconstruction/helpers/trajectories/circular_trajectory.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
|