查看: 1734|回复: 0

【语义分割】Dice's coefficient  实现

[复制链接]

665

主题

1234

帖子

6684

积分

xdtech

Rank: 5Rank: 5

积分
6684
发表于 2019-4-21 10:23:49 | 显示全部楼层 |阅读模式
Dice's coefficient 计算过程如下:






X:原图 Y:预测图


smooth = 1.
def dice_coef(y_true, y_pred):


    y_true_f = K.flatten(y_true)


    y_pred_f = K.flatten(y_pred)


    intersection = K.sum(y_true_f * y_pred_f)


    return (2. * intersection + smooth) / (K.sum(y_true_f * y_true_f) + K.sum(y_pred_f * y_pred_f) + smooth)


def dice_coef_loss(y_true, y_pred):


    return 1. - dice_coef(y_true, y_pred)
---------------------


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表