shekkizh / FCN.tensorflow

Tensorflow implementation of Fully Convolutional Networks for Semantic Segmentation (http://fcn.berkeleyvision.org)
MIT License
1.25k stars 527 forks source link

论文中是说最后输入1000张特征图,取1000张特征图中的各像素最大值,为啥这个代码要用3通道呢 #115

Open jiashihuigithub opened 5 years ago

jiashihuigithub commented 5 years ago

annotation_pred = tf.argmax(conv_t3, dimension=3, name="prediction")我看论文中是说最后输入1000张特征图,取1000张特征图中的各像素最大值,为啥这个代码要用3通道呢

liguanda1997 commented 5 years ago

迁移学习,fcn就是基于三通道模型下的呀

zhangyusen123456 commented 5 years ago

意思是取第三维,就是说类别的那一维中的最大值,而不是每一行/列的最大值