Proposed Methodology

Heatmap Regression

将预测AU intensity vector的问题转换为预测multiple AU heatmaps

Fig.2给出了每一个AU的central location
Q:每一个点都应该由68个landmarks通过某些规则计算得到的吧,文中没有仔细说明
Facial Action Unit Intensity Estimation via Semantic Correspondence Learning with Dynamic Graph Conv
AU数量为NN,对于第ii个AU,其location的坐标为x^i\hat{x}_i,以x^i\hat{x}_i为中心作用Gaussian function,生成heatmap gi(x)g_i(x)
gi(x)=I2πσ2exp(xx^i222σ2)(1) g_i(x)=\frac{I}{2\pi\sigma^2}\exp\left ( -\frac{\left \| x-\hat{x}_i \right \|_2^2}{2\sigma^2} \right ) \qquad(1)
其中II表示AU intensity,σ\sigma是Gaussian function的标准差

网络输出的predicted heatmap为hi(x;w,b)h_i(x;w,b)xx表示input facial image,hhww是网络的参数,于是求MSE作为监督损失
LMSE=minw,bi=1Nxhi(x;w,b)gi(x)22(2) L_{MSE}=\underset{w,b}{\min}\sum_{i=1}^{N}\sum_{x}\left \| h_i(x;w,b)-g_i(x) \right \|_2^2 \qquad(2)
由predicted heatmap转换为predicted label时,只需要取最大值即可(若某个AU intensity为0,那么predicted heatmap必然是全黑的)

SCC: Semantic Correspondence Convolution

Given the co-occurrences of different AU intensities, the semantic representations of feature maps are highly correlated in spatial distributions.

本文提出SCC来model the correlation among feature channels,其思想inspired by the dynamic graph convolutions in geometry modeling
注:Wang Y, Sun Y, Liu Z, et al. Dynamic Graph CNN for Learning on Point Clouds[J]. ACM Transactions on Graphics (TOG), 2019, 38(5): 1-12.

后续的SCC有点复杂,是参考TOG paper的

相关文章:

  • 2021-06-01
  • 2021-11-10
  • 2021-07-03
  • 2021-05-08
  • 2021-04-25
  • 2021-08-31
  • 2022-12-23
  • 2021-07-22
猜你喜欢
  • 2021-10-12
  • 2021-08-14
  • 2021-11-02
  • 2021-08-22
  • 2022-12-23
  • 2021-06-26
  • 2022-01-16
相关资源
相似解决方案