ivadomed / canproco

Code for preprocessing the CanProCo brain and spinal cord dataset
MIT License
4 stars 1 forks source link

Canproco dataset analysis #48

Open plbenveniste opened 12 months ago

plbenveniste commented 12 months ago

On branch plb/dataframe_analysis Created a folder (dataset_analysis) for the analysis of the CanProCo dataset. The objective is to analyze the CanProCo dataset and perform correlation over different metrics:

So far, I have created the file generate_dataframe.py which constructs the dataframe and gathers information. Right now, I am testing in on a fake canproco dataset which contains lesion segmentations, spinal cord segmentation and vertebral levels (will be added soon).

For now, the dataframe looks like this:

image

More columns will be added as I will be able to use vertebral levels soon ...

This work relies on the segmentation of the spinal cord and vertebral levels issue 46 (on which @valosekj and @plbenveniste are working)

valosekj commented 12 months ago

Thanks for the script!

I have created the file generate_dataset.py which constructs the dataset and gathers information.

The phrase "constructs the dataset" in this sentence and also the name of the generate_dataset.py script is a little bit confusing. canproco itself is already a dataset (we usually use the term dataset when talking about a bunch of MRI data from a single study). In other words, we are not constructing or generating any dataset here; the dataset already exists. We can use phrases such as "parse dataset", "analyze dataset," or "analyze lesions" (since the purpose of the generate_dataset.py script is to obtain the lesion characteristics).

plbenveniste commented 11 months ago

Analysis of lesions per spinal cord level

The code was modified to add the analysis of lesions per spinal cord levels. It takes the disc segmentation and the labelled lesions (done by sct_analyse_lesions). Then it looks at lesions that are between two levels. (assumption: a lesion is between two levels if its centre point, a.k.a. the average coordinate of voxel in lesion, is between the two disc levels). The computed data is added to the dataframe.

The dataframe contains :

Tests were performed on a fake canproco dataset (which contains the required segmentations)

What next

jcohenadad commented 11 months ago

@plbenveniste could you please describe code evolution within a PR instead of within an issue? That will enable you to associate statements like "The code was modified" with an actual commit -- otherwise we don't know what code was modified, how it was modified, when it was modified and on what branch. Thanks