You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Back Projection Method for a single stack of lines.
104
106
105
-
:param filter_name: string, optional
106
-
Filter used in frequency domain filtering. Assign None to use no filter.
107
-
:param angles: array
108
-
assuming not perfectly radial angles
109
-
:return: stack of reconstructed
107
+
:param angles: np.ndarray
108
+
1D array of angles in radians. Each entry in the array corresponds to a different number of angles which are used to reconstruct the image.
109
+
:return: Aspire Image
110
+
An Image object containing the original stack size with a newly reconstructed numpy array of the images. Expected return shape should be (n_images, n_angles, n_radial_points)
110
111
"""
111
-
assert (
112
-
len(angles) ==self.n_angles
113
-
), "Number of angles must match the number of projections"
112
+
iflen(angles) !=self.n_angles:
113
+
raiseValueError("Number of angles must match the number of projections.")
0 commit comments