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
This issue summarizes testing of the model for dorsal cervical rootlets (sct_deepseg -task seg_spinal_rootlets_t2w) on an axial 7T ME-GRE (T2*w) image (0.24 x 0.24 x 3.0 mm) from Caroline.
TL;DR
The model does not perform well on the provided image out of the box. The performance is significantly lower compared to 3T ME-GRE images (see #60).
# Combine echos (individual 3D images) into a single 4D image (better for sct_maths)sct_image -i sub-002_run-03_echo-1_t2space.nii.gz sub-002_run-03_echo-2_t2space.nii.gz sub-002_run-03_echo-3_t2space.nii.gz -concat t -o sub-002_run-03_combined_echos_t2space.nii.gz
# Mean across 4th dimsct_maths -i sub-002_run-03_combined_echos_t2space.nii.gz -mean t -o sub-002_run-03_combined_echos_t2space_mean.nii.gz
# RMS across 4th dimsct_maths -i sub-002_run-03_combined_echos_t2space.nii.gz -rms t -o sub-002_run-03_combined_echos_t2space_rms.nii.gz
Some rootlets are now segmented, but most of the rootlets are still missing.
image
Interestingly, the model performs slightly better on the manually resampled image. This is slightly surprising to me because sct_deepseg should do the resampling before running the inference as well.
Results for the rms image are pretty similar --> not showing.
The text was updated successfully, but these errors were encountered:
This issue summarizes testing of the model for dorsal cervical rootlets (
sct_deepseg -task seg_spinal_rootlets_t2w
) on an axial 7T ME-GRE (T2*w) image (0.24 x 0.24 x 3.0 mm) from Caroline.TL;DR
The model does not perform well on the provided image out of the box. The performance is significantly lower compared to 3T ME-GRE images (see #60).
0) Preparing data
Data structure
run-03
has the largest FOV --> using itaveraging across echoes
1)
mean
imageFirst trying the model on the
mean
image:sct_deepseg -i sub-002_run-03_combined_echos_t2space_mean.nii.gz -o sub-002_run-03_combined_echos_t2space_mean_rootlets.nii.gz -task seg_spinal_rootlets_t2w
Segmentation is totally off -- no rootlets segmented.
image
2) Cropped
mean
imageTrying to crop (manually using the FSLeyes crop feature) the image around the SC to limit the FOV before running inference.
sct_deepseg -i sub-002_run-03_combined_echos_t2space_mean_roi.nii.gz -o sub-002_run-03_combined_echos_t2space_mean_roi_rootlets.nii.gz -task seg_spinal_rootlets_t2w
Cropping is not helping much -- only a few rootlets were segmented.
image
3) Cropped
mean
image resampled to 0.8 mmTrying to manually resample the image to iso 0.8 mm to match the resolution of the training data before running inference.
Some rootlets are now segmented, but most of the rootlets are still missing.
image
Interestingly, the model performs slightly better on the manually resampled image. This is slightly surprising to me because
sct_deepseg
should do the resampling before running the inference as well.Results for the
rms
image are pretty similar --> not showing.The text was updated successfully, but these errors were encountered: