-
Notifications
You must be signed in to change notification settings - Fork 0
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
Compression detection with deep learning #4
Comments
Regression problem - model predicts a list of slice numbers which have some compression (or not) for each subject. Inputs to the model?
|
Good thoughts @naga-karthik . I was originally thinking of inputting the morphometrics values (CSA, torsion, AP diameter, etc.) derived from the segmentation and train a simple regression model (no deep learning), but that might be a reduction of the richness of information provided by the actual MRI image, where a CNN could potentially perform better. We need to try both! I don't think inputing the disc labels will be necessary. However, if we go the CNN route, inputting the T2w image, the cord segmentation (to "help" the CNN) and the compression labels will be necessary. |
We thought that disc labels might be useful since SC anatomy varies along the S-I direction. So, the disc labels might "help" the CNN.
Is cord segmentation really necessary? During our discussion with Naga, we thought that from the practical point of view, it would be better not to use the segmentation (because segmentation in compressed SC often requires time-consuming manual corrections). But still, we can use automatically obtained segmentation or centerline for input image cropping before running CNN. |
@jcohenadad Thanks for your suggestions! However, I don't see how the cord segmentation would be useful, unless we colour code the segmentation mask differently for regions where the spinal cord is compressed. Then, we can turn it into a 3-class segmentation problem (class 0: background, class 1: normal SC seg mask, class 2: compressed SC regions). I also think that it is unnecessary to make it a segmentation problem again. |
right, but I'm not sure how to encode this information into a CNN (as another channel? i'm not sure the conv filters will properly encode the information).
This is what I meant: cord segmentation only to select a subset of patches to go into the CNN (as proposed in ivadomed/ivadomed#1259 (comment)). This also addresses #4 (comment). |
duplicate of #2 |
Within a parallel project focused on morphometric metrics normalization, we will obtain ground-true information about the level of compression across many DCM patients. The level of compression for each patient will be stored within a NIfTI file as a single voxel value. The NIfTI file will have the same dimension as the source image.
A deep learning model could then be trained to detect the compression automatically.
See relevant previous study; also explained as a blog post.
The text was updated successfully, but these errors were encountered: