文章目录 前言分割任务的评判标准常用数据集全卷积网络layer-by-layer vs. patch-by-patch卷积层 VS. patch-wiseShift-and-stitch vs. 反卷积反卷积-矩阵转置计算方式反卷积的另一种方式-卷积核计算方式网络改造VGG骨干网络改造Combining what and where, skip architectureR…
1.fcn.utils.label_colormap
传入的参数N表示要分类的数目,生成的cmap时N*3的数组,3表示该类的(R G B)的值
def label_colormap(N256):cmap np.zeros((N, 3))for i in six.moves.range(0, N):id ir, g, b 0, 0, 0for j in si…