AICurious Logo

What is: Spatial Attention-Guided Mask?

SourceCenterMask : Real-Time Anchor-Free Instance Segmentation
Year2000
Data SourceCC BY-SA - https://paperswithcode.com

A Spatial Attention-Guided Mask is a module for instance segmentation that predicts a segmentation mask on each detected box with a spatial attention map that helps to focus on informative pixels and suppress noise. The goal is to guide the mask head for spotlighting meaningful pixels and repressing uninformative ones.

Once features inside the predicted RoIs are extracted by RoIAlign with 14×14 resolution, those features are fed into four conv layers and the spatial attention module (SAM) sequentially. To exploit the spatial attention map A_sag(X_i)R1×W×HA\_{sag}\left(X\_{i}\right) \in \mathcal{R}^{1\times{W}\times{H}} as a feature descriptor given input feature map X_iRC×W×HX\_{i} \in \mathcal{R}^{C×W×H}, the SAM first generates pooled features P_avg,P_maxR1×W×HP\_{avg}, P\_{max} \in \mathcal{R}^{1\times{W}\times{H}} by both average and max pooling operations respectively along the channel axis and aggregates them via concatenation. Then it is followed by a 3 × 3 conv layer and normalized by the sigmoid function. The computation process is summarized as follow:

A_sag(X_i)=σ(F_3×3(P_maxP_avg))A\_{sag}\left(X\_{i}\right) = \sigma\left(F\_{3\times{3}}(P\_{max} \cdot P\_{avg})\right)

where σ\sigma denotes the sigmoid function, F_3×3F\_{3\times{3}} is 3 × 3 conv layer and \cdot represents the concatenate operation. Finally, the attention guided feature map X_sagRC×W×HX\_{sag} ∈ \mathcal{R}^{C\times{W}\times{H}} is computed as:

X_sag=A_sag(X_i)X_iX\_{sag} = A\_{sag}\left(X\_{i}\right) \otimes X\_{i}

where ⊗ denotes element-wise multiplication. After then, a 2 × 2 deconv upsamples the spatially attended feature map to 28 × 28 resolution. Lastly, a 1 × 1 conv is applied for predicting class-specific masks.