How to calculate dice overlap for MRI images?

20 次查看(过去 30 天)
hi! I want to calculate dice overlap for complete tumor ,tumor core and enhancing tumor core.suggest me a way to do it.Thanks in advance.

回答(1 个)

Tobias Goodwin-Allcock
Hi Sandhiya!
You can load the tumor volume masks into matlab using niftiread and then compute the Sørensen–Dice coefficient using dice function.
Say you have CompleteTumorMask.nii.gz and TumorCoreMask.nii.gz in your current directory then you can calculate the dice overlap as follows:
% Load the tumor masks
CompleteTumorMask = niftiread("CompleteTumorMask.nii.gz")
TumorCoreMask = niftiread("TumorCoreMask.nii.gz")
% Compute the dice overlap
CompleteTumor_TumorCore_Overlap = dice(CompleteTumorMask, TumorCoreMask)
I hope this helps!
Toby

类别

Help CenterFile Exchange 中查找有关 Agriculture 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by