Skip to content

Commit

Permalink
Add a YAML template for adjusting registration parameters
Browse files Browse the repository at this point in the history
Add a sample registration configuration script with the three major registration transformation types.
  • Loading branch information
yoda-vid committed Jun 5, 2020
1 parent f370c68 commit dc59895
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions profiles/atlas_reg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
# Example registration profile
# Copy this file and edit your copy for own custom registrations

# translation transformation
reg_translation:
metric_similarity: "AdvancedMattesMutualInformation"
max_iter: "2048"
grid_space_voxels: null
num_resolutions: "8"
grid_spacing_schedule: null
erode_mask: null
point_based: False

# affine/scaling transformation
reg_affine:
metric_similarity: "AdvancedMattesMutualInformation"
max_iter: "1024"
grid_space_voxels: null
num_resolutions: "4"
grid_spacing_schedule: null
erode_mask: null
point_based: False

# bspline transformation
reg_bspline:
metric_similarity: "AdvancedMattesMutualInformation"
max_iter: "512"
grid_space_voxels: null
num_resolutions: "50"
grid_spacing_schedule: null
erode_mask: null
point_based: False
...

0 comments on commit dc59895

Please sign in to comment.