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
Copy file name to clipboardExpand all lines: brainles_preprocessing/registration/elastix/elastix.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ def register(
26
26
"""
27
27
Register images using elastix.
28
28
29
+
This is an optional dependency - to use this registrator, you need to install the `brainles_preprocessing` package with the `itk-elastix` extra: `pip install brainles_preprocessing[itk-elastix]`.
30
+
29
31
Args:
30
32
fixed_image_path (str): Path to the fixed image.
31
33
moving_image_path (str): Path to the moving image.
Copy file name to clipboardExpand all lines: brainles_preprocessing/registration/greedy/greedy.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,9 @@ def register(
24
24
log_file_path: Optional[str] =None,
25
25
) ->None:
26
26
"""
27
-
Register images using greedy. Ref: https://pypi.org/project/picsl-greedy/ and https://greedy.readthedocs.io/en/latest/reference.html#greedy-usage
27
+
Register images using greedy. Ref: https://pypi.org/project/picsl-greedy/ and https://greedy.readthedocs.io/en/latest/reference.html#greedy-usage.
28
+
29
+
This is an optional dependency - to use this registrator, you need to install the `brainles_preprocessing` package with the `picsl_greedy` extra: `pip install brainles_preprocessing[picsl_greedy]`.
0 commit comments