Skip to content

Commit

Permalink
DOC: Slightly improved documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ntustison committed Nov 23, 2024
1 parent 6b7d638 commit 2b7f09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ants/registration/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,7 @@ def label_image_registration(fixed_label_images,
for j in range(len(common_label_ids[i])):
label = common_label_ids[i][j]
if verbose:
print(" Finding center of mass for image " + str(i) + ", label " + str(label))
print(" Finding center of mass for image pair " + str(i) + ", label " + str(label))
fixed_single_label_image = ants.threshold_image(fixed_label_images[i], label, label, 1, 0)
fixed_centers_of_mass[count, :] = ants.get_center_of_mass(fixed_single_label_image)
moving_single_label_image = ants.threshold_image(moving_label_images[i], label, label, 1, 0)
Expand Down

0 comments on commit 2b7f09d

Please sign in to comment.