Dice Similarity coefficient error map for 3D image?
Afficher commentaires plus anciens
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?
Réponses (1)
Payam Ahmadvand
le 22 Fév 2016
Modifié(e) : Payam Ahmadvand
le 22 Fév 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);
Catégories
En savoir plus sur Image Segmentation dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!