Issam28 / Brain-tumor-segmentation

A deep learning based approach for brain tumor MRI segmentation.
191 stars 63 forks source link

How to get ground truth from the dataset? How did you use as a parameter? #17

Open bhaktikhera1 opened 5 years ago

bhaktikhera1 commented 5 years ago

How to get ground truth from the dataset? How did you use as a parameter? Example : def binary_dice3d(s,g):

dice score of two 3D volumes

num=np.sum(np.multiply(s, g)) denom=s.sum() + g.sum() if denom==0: return 1 else: return 2.0*num/denom

def sensitivity (seg,ground):

computs false negative rate

num=np.sum(np.multiply(ground, seg )) denom=np.sum(ground) if denom==0: return 1 else: return num/denom