Skip to content

Commit

Permalink
Merge branch 'brendt/typing' of github.com:lanl/scico into brendt/typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-T-McCann committed Jan 19, 2022
2 parents 457cddb + 7cbea48 commit 13680fb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scico/linop/radon_svmbir.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def __init__(
input_shape: Shape,
angles: Array,
num_channels: int,

center_offset: float = 0.0,
is_masked: bool = False,
):
Expand Down Expand Up @@ -104,7 +103,11 @@ def __init__(

@staticmethod
def _proj(
x: Array, angles: Array, num_channels: int, center_offset: float = 0.0, roi_radius: Optional[float] = None
x: Array,
angles: Array,
num_channels: int,
center_offset: float = 0.0,
roi_radius: Optional[float] = None,
) -> Array:
return svmbir.project(
np.array(x),
Expand Down

0 comments on commit 13680fb

Please sign in to comment.