Brain-tumor-segmentation icon indicating copy to clipboard operation
Brain-tumor-segmentation copied to clipboard

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

Open bhaktikhera1 opened this issue 6 years ago • 0 comments

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

bhaktikhera1 avatar May 03 '19 17:05 bhaktikhera1