Replies: 1 comment 5 replies
-
|
It is true that N4 is dimensionality-agnostic like many filters in ITK. And I did play around with some 4-D data when I first wrote it but it doesn't work because the temporal and spatial dimensions should be treated differently. If I were to approach this problem de novo, I would try wrapping a temporal smoothing around the 3D-series correction (and perhaps iterating over the different scales with that temporal smoothing). |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I am trying to perform a bias field correction on 4D magnitude data, which is then used for quantitative brain maps. Unfortunately, especially the later echoes are visibly affected by what i assume are B0 inhomogeneities, as for example posterior parts of the brain are consistently brighter than anterior parts, which is in turn visible in the quantitative data. These artifacts are more apparent as TE increases, so calculating a bias field from a single echo (or from a mean of all echoes) and applying to all didnt work out.
I was able to reduce the artifacts in the magnitude data via echo-wise 3D N4 correction in SimpleITK, however, this understandably destroys the signal evolution and subsequently calculated quantitative maps show nonsensical values. Since i read that the N4 filter in AntsPy in theory supports 4D images, i tried it, hoping that it would preserve the signal evolution. This was the case, however, it had barely any effect on the bias field, that the 3D N4 was previously able to correct.
With the ants.N4, I already tried spline_param between 200 and 50 (which produced between 4 and 6 control points in all dimensions, which was similar to my sitk settings), as well as different shrink factors, convergence limits and turning the rescale_intensities on, which all had only a minor effect on the output image.
I was wondering if anyone here had any experience with the usage of the N4 filter on 4D data, and might be willing to share parameters that worked. I am also thankful for any other ideas regarding this.
Beta Was this translation helpful? Give feedback.
All reactions