Yunbo Rao , Qingsong Lv , Shaoning Zeng∗ , Yuling Yi , Cheng Huang , Yun Gao , Zhanglin Cheng , Jihong Sun, 2022
- GGO Segmentation
- Lung cavity segmentation
- Provide a collated dataset of 311 slices
First of all, clone the code and prepare Matlab2020a software
git clone git@github.com:Lqs-github/ACL.gitand then Run ACL.m file.
Finally, you can see the GGO segmentation results for 311 slices and the GroundTrue.
If you want to see the result of the segmentation of the lung cavity, replace lines 245 - 253 in the ACL.m file with the following code.
subplot(141)
imshow(image);
title('Image')
subplot(142)
imshow(ill_image);
title('ACL')
subplot(143)
imshow(gt);
title('GroundTrue');
subplot(144)
imshow(lung);
title('Lung');

