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 XTRegisterSameChannel documentation. #78

Merged
merged 1 commit into from
Sep 30, 2024
Merged
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
7 changes: 6 additions & 1 deletion XTRegisterSameChannel.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ class RegisterSameChannelDialog(ieb.ImarisExtensionBase):
6. Auto mask - limit voxels used in registration to non zero voxels.
7. Samples per parameter - number of samples used during registration.

When performing registration we usually use the full resolution image, default selection for the
"Start registration at resolution" dropdown. When working with large images this may require a significant amount
of memory (RAM). When memory resources are constrained, one can try to start the registration at a higher level of
the image pyramid, coarser data representation, which requires less memory. Note that the closer one is to the apex
of the image pyramid the coarser the data representation which is potentially detrimental to registration accuracy.

z-stack Registration
++++++++++++++++++++

Expand Down Expand Up @@ -827,7 +833,6 @@ def __compute_correlations(self):
def __save_correlation_matrix(
self, corr_mat, output_file_name, file_name_labels, title=None
):

# Create an image from the correlation values, squares with color corrosponding
# to value, default color map (viridis)
fig, ax = plt.subplots(figsize=(15, 15))
Expand Down