1.  Holistically-Nested Edge Detection (CVPR 2015 (HED))
  2. Richer Convolutional Features for Edge Detection (CVPR 2017 (RCF))
  3. Deeply Supervised Salient Object Detection with Short Connections(CVPR 2017 (DSS))

Purpose

Generally speaking, HED、 RCF and DSS aim to solve the following problems:

(1) holistic image training and prediction; 

(2) multi-scale and multi-level feature learning.

(3)high level and low level concat (shot connections)

Model

1. HED

HED automatically learns rich hierarchical representations (guided by deep supervision on side responses) that are important in order to resolve the challenging ambiguity in edge and object boundary detection.

HED、RCF and DSS (deep learning)

 

HED network architecture

he principle of network construction:

 

 
  HED、RCF and DSS (deep learning)

Multi-scale learning: inside (left) and outside (right).
On the one hand, multi-scale learning can be “inside” the neural network, in the form of increasingly larger receptive fields and downsampled layers. On the other hand, multi-scale learning can be “outside” of the neural network, for example by “tweaking the scales” of input images. The later, however, is time-consuming. So, this paper uses the former.

The architecture comprises a single stream deep network with multiple side outputs to achieve the goal that have a network that learns features from which it is possible to produce edge maps approaching the ground truth.

2. RCF

This paper attempt to adopt richer convolutional features to detect edge

 
HED、RCF and DSS (deep learning)  

RCF network architecture

The principle of network construction:

The use of this rich hierarchical information of every stage is hypothesized to help a lot, so the model increases the number hierarchical information on the basis of HED.

 

 

3. DSS

This paper provides rich multi-scale feature maps at each layer, a property that is critically needed to perform segment detection

HED、RCF and DSS (deep learning)

DSS network architecture

By having a series of short connections from deeper side outputs to shallower ones, our new framework offers two advantages: (1) high-level features can be transformed to shallower side-output layers and thus can help them better locate the most salient region; shallower side output layers can learn rich low-level features that can help refine the sparse and irregular prediction maps from deeper side-output layers.(2) By combining features from different levels, the resulting architecture provides rich multi-scale feature maps at each layer, a property that is essentially need to do salient object detection.

Thinking

Although these papers take into account the role of the layer, only produce a map at each stage, so information is less, we can consider emerging multiple maps at each stage, and finally merge multiple maps.

 

 

相关文章:

  • 2022-12-23
  • 2021-06-07
  • 2021-10-30
  • 2021-07-12
  • 2021-06-15
  • 2021-06-18
  • 2021-10-10
  • 2022-01-22
猜你喜欢
  • 2021-08-18
  • 2022-12-23
  • 2021-12-06
  • 2021-11-11
  • 2021-11-12
  • 2021-05-28
  • 2021-09-28
相关资源
相似解决方案