Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update jquery #240

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platipy/backend/static/js/jquery.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions platipy/imaging/registration/deformable.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def fast_symmetric_forces_demons_registration(
smoothing_sigmas=False,
default_value=None,
ncores=1,
interp_order=2,
interp_order=sitk.sitkLinear,
verbose=False,
):
"""
Expand Down Expand Up @@ -318,7 +318,7 @@ def bspline_registration(
metric="mean_squares",
initial_grid_spacing=64,
grid_scale_factors=[1, 2, 4],
interp_order=3,
interp_order=sitk.sitkBSpline,
default_value=-1000,
number_of_iterations=20,
isotropic_resample=False,
Expand Down Expand Up @@ -370,7 +370,7 @@ def bspline_registration(
multiresolution stage.
Defaults to [1, 2, 4].
interp_order (int, optional): Interpolation order of final resampling.
Defaults to 3 (cubic).
Defaults to sitk.sitkBSpline (cubic).
default_value (int, optional): Default image value. Defaults to -1000.
number_of_iterations (int, optional): Number of iterations at each resolution stage.
Defaults to 20.
Expand Down
2 changes: 1 addition & 1 deletion platipy/imaging/visualisation/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def project_onto_arbitrary_plane(
rotation_axis=[1, 0, 0],
rotation_angle=0,
default_value=-1000,
resample_interpolation=2,
resample_interpolation=sitk.sitkLinear,
):
"""[summary]

Expand Down
Loading