Dice Similarity coefficient error map for 3D image?
Mostrar comentarios más antiguos
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?
Respuestas (1)
Payam Ahmadvand
el 22 de Feb. de 2016
Editada: Payam Ahmadvand
el 22 de Feb. de 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);
Categorías
Más información sobre Image Segmentation en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!