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
Is your feature request related to a problem? Please describe.
In cases where we run DenoiseImage and N4BiasFieldCorrection on multiple images, we're almost certainly wasting effort. DenoiseImage estimates and removes Gaussian or Rician noise. The sum of Gaussians is Gaussian and the sum of Ricians is Rician, so there is no advantage to running DenoiseImage prior to merge unless the noise present in the image damages the ability to align and merge the images.
Similarly, N4BiasFieldCorrection estimates bias fields at a particular spatial frequency. Summing the bias fields of two images should not generate a bias field of a higher spatial frequency. It should be safe to perform this after the fact.
A dataset with 3 or more T1w or T2w images would make a decent test to verify that the combined process is not measurably worse. Using a canonical FAST or Atropos segmentation, we could estimate the mean and variance within each tissue class in each image to have a quantitative estimate.
Describe alternatives you've considered
The status quo.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In cases where we run DenoiseImage and N4BiasFieldCorrection on multiple images, we're almost certainly wasting effort. DenoiseImage estimates and removes Gaussian or Rician noise. The sum of Gaussians is Gaussian and the sum of Ricians is Rician, so there is no advantage to running
DenoiseImage
prior to merge unless the noise present in the image damages the ability to align and merge the images.Similarly, N4BiasFieldCorrection estimates bias fields at a particular spatial frequency. Summing the bias fields of two images should not generate a bias field of a higher spatial frequency. It should be safe to perform this after the fact.
Describe the solution you'd like
Instead of:
Do
A dataset with 3 or more T1w or T2w images would make a decent test to verify that the combined process is not measurably worse. Using a canonical FAST or Atropos segmentation, we could estimate the mean and variance within each tissue class in each image to have a quantitative estimate.
Describe alternatives you've considered
The status quo.
The text was updated successfully, but these errors were encountered: