Ruixxxx / LSSANet

[Official Repo: MICCAI 2022] LSSANet: A Long Short Slice-Aware Network for Pulmonary Nodule Detection
GNU General Public License v3.0
12 stars 3 forks source link

PN9 #6

Closed thestars-maker closed 10 months ago

thestars-maker commented 11 months ago

How can the PN9 dataset be processed into a 2D data format such as VOC or COCO, thanks a lot for sharing!

Ruixxxx commented 11 months ago

How can the PN9 dataset be processed into a 2D data format such as VOC or COCO, thanks a lot for sharing!

Hi,

Thanks for your attention! A simple way to convert the PN9 dataset into a 2D data format is by extracting slices from the 3D volume along the z, y, or x-axis.

thestars-maker commented 11 months ago

Thank you for your reply, do we usually take the Z-axis as the slice to extract the 2D information or can any of the axes be used?

Ruixxxx commented 11 months ago

Thank you for your reply, do we usually take the Z-axis as the slice to extract the 2D information or can any of the axes be used?

You can extract 2D slices from any of the three axes. Extracting 2D slices along the Z-axis is the most common choice in CT imaging. The choice of which axis to use depends on the specific requirements of the analysis or visualization you are performing.

thestars-maker commented 11 months ago

I'm very sorry, I noticed that the author himself open-sources the data i.e. in png or .npy format, do I need to convert it to 3D data now, and how is this accomplished?

Ruixxxx commented 11 months ago

I'm very sorry, I noticed that the author himself open-sources the data i.e. in png or .npy format, do I need to convert it to 3D data now, and how is this accomplished?

Yes, you need to convert the open-source data into 3D data, thus running the 3D models. For example, you can write a Python file to load and convert the .jpg files in one folder, which represents one CT image, into one 3D matrix.