Dice Similarity coefficient error map for 3D image?

17 views (last 30 days)
I am want to calculate Dice Similarity Coefficient (DSC) for 3D image and show error map (from 0 to 1). I done it for 2D. But I don't know how to apply it or change for 3D. Could you help me to find the way to calculate DSC for 3D image and display error map in matlab?

Answers (1)

Payam Ahmadvand
Payam Ahmadvand on 22 Feb 2016
Edited: Payam Ahmadvand on 22 Feb 2016
Hi,
It doesn't matter images is 2D or 3D. If you have your segmentation in a logical volume in which 1 indicates inside the segmentation, this code can calculates Dice:
Seg1 = GroundTruthSeg(:);
Seg2 = YourSeg(:);
VoxelsNumber1=sum(Seg1);
VoxelsNumber2=sum(Seg2);
CommonArea=sum(Seg1 & Seg2);
Dice=(2*CommonArea)/(VoxelsNumber1+VoxelsNumber2);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!