Object Contour Detection with a Fully Convolutional Encoder-Decoder Network


使用卷积编码解码网络检测主要目标的边缘

【论文笔记】Object Contour Detection with a Fully Convolutional Encoder-Decoder Network

网络结构是:
编码:VGG-16
解码:反池化-卷积-**-dropout

卷积核:

The number of channels of every decoder layer is properly
designed to allow unpooling from its corresponding maxpooling layer.

dropout:

We also add a dropout layer after each relu layer in the decoder. A complete decoder network setup is listed in Table 1

损失函数:

loss function is simply the pixel-wise logistic loss.

反池化:

We initialize our encoder with VGG-16 net [48] (up to the “fc6” layer) and to achieve dense prediction of image size our decoder is constructed by alternating unpooling and convolution layers where unpooling layers re-use the switches from max-pooling layers of encoder to upscale the feature maps.

反池化细节:
http://blog.csdn.net/xiaxzhou/article/details/74012137


训练:
During training, we fix the encoder parameters (VGG-16) and only optimize decoder parameters.


相关文章:

  • 2021-06-16
  • 2021-11-14
  • 2021-11-18
  • 2021-10-19
  • 2022-01-05
  • 2021-08-10
  • 2021-07-31
  • 2021-12-27
猜你喜欢
  • 2022-01-05
  • 2021-07-13
  • 2022-12-23
  • 2021-07-15
  • 2021-07-02
  • 2021-06-01
相关资源
相似解决方案