covid-chestxray-dataset icon indicating copy to clipboard operation
covid-chestxray-dataset copied to clipboard

CT segmentation data

Open DLinRadiology opened this issue 4 years ago • 8 comments

Hi, you might be interested in this 100 CT slice dataset of 60 patients that we have segmented:

http://medicalsegmentation.com/covid19/

Feel free to add to your list if you find it relevant.

DLinRadiology avatar Mar 26 '20 19:03 DLinRadiology

@DLinRadiology Great contribution ! Thanks

elcronos avatar Mar 26 '20 19:03 elcronos

Hi, you might be interested in this 100 CT slice dataset of 60 patients that we have segmented:

http://medicalsegmentation.com/covid19/

Feel free to add to your list if you find it relevant.

Thanks a lot. Can we get the original JPG if they are available? I am not familiar with using the nii images, my bad!

ffkharbat avatar Mar 27 '20 11:03 ffkharbat

Hi, you might be interested in this 100 CT slice dataset of 60 patients that we have segmented: http://medicalsegmentation.com/covid19/ Feel free to add to your list if you find it relevant.

Thanks a lot. Can we get the original JPG if they are available? I am not familiar with using the nii images, my bad!

The problem is that segmentations were done on the nifti file and it would be a real hassle to convert segmentations back to their original size. The CT images without annotations don't have much value in my opinion and they are not normalized to Hounsfield. Do you still want them?

If you will be working with volumetric medical images (CT or MRI), nifti is a very common file format that you should get familiar with.

DLinRadiology avatar Mar 27 '20 12:03 DLinRadiology

Hi, you might be interested in this 100 CT slice dataset of 60 patients that we have segmented: http://medicalsegmentation.com/covid19/ Feel free to add to your list if you find it relevant.

Thanks a lot. Can we get the original JPG if they are available? I am not familiar with using the nii images, my bad!

The problem is that segmentations were done on the nifti file and it would be a real hassle to convert segmentations back to their original size. The CT images without annotations don't have much value in my opinion and they are not normalized to Hounsfield. Do you still want them?

If you will be working with volumetric medical images (CT or MRI), nifti is a very common file format that you should get familiar with.

Thanks again for your response and clarification I am looking into the nifti so that I can use them. Appreciate your help. If you recommend any tutorial for using the filetype into machine learning please let me know. Of course, the site should be cited properly (Y)

ffkharbat avatar Mar 27 '20 12:03 ffkharbat

Hi, you might be interested in this 100 CT slice dataset of 60 patients that we have segmented: http://medicalsegmentation.com/covid19/ Feel free to add to your list if you find it relevant.

Thanks a lot. Can we get the original JPG if they are available? I am not familiar with using the nii images, my bad!

The problem is that segmentations were done on the nifti file and it would be a real hassle to convert segmentations back to their original size. The CT images without annotations don't have much value in my opinion and they are not normalized to Hounsfield. Do you still want them? If you will be working with volumetric medical images (CT or MRI), nifti is a very common file format that you should get familiar with.

Thanks again for your response and clarification I am looking into the nifti so that I can use them. Appreciate your help. If you recommend any tutorial for using the filetype into machine learning please let me know. Of course, the site should be cited properly (Y)

People usually use Python for machine/deep learning. In python, the most common library for reading nifti files is nibabel. The usual way to use it is for example:

import nibabel as nib image_volume = nib.load("./tr_im.nii.gz") image_volume_voxel_data = image_volume.get_fdata()

Same for mask data. Then you can do whatever as you have the data loaded into an array.

DLinRadiology avatar Mar 27 '20 14:03 DLinRadiology

Please look at the NIfTI Image Converter repo. I found it very easy to use.

sfleisch avatar Apr 16 '20 00:04 sfleisch

@DLinRadiology thank you very much for uploading your annotation work! Highly appreciated.

Are you also allowed to share the full volumes, including slices that were not annotated? We're building a volume-level classifier, so we can use any confirmed COVID cases.

jscheithe avatar May 12 '20 08:05 jscheithe

@DLinRadiology thank you very much for uploading your annotation work! Highly appreciated.

Are you also allowed to share the full volumes, including slices that were not annotated? We're building a volume-level classifier, so we can use any confirmed COVID cases.

Hi, unfortunately we don't have the full volumes. You can read about how we collected the data here

DLinRadiology avatar May 13 '20 14:05 DLinRadiology