<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Combining Body Pose and Movement Modalities for No-audio Speech Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Liandong Li</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Zhuo Hao</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Bo Sun</string-name>
          <email>tosunbo@bnu.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Beijing Normal University</institution>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>27</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>Speech detection is important to automatic social behaviour analysis. In this paper, we describe our approach for no-audio speech detection. We estimate speaker pose and movement by both cameras and acceleration sensors. The multimodal features are combined and are utilized for per-second speech status prediction. The approach is tested on the MediaEval 2019 No-Audio Multimodal Speech Detection Task.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        Speech detection is important to automatic social behaviour
analysis. There has been research focusing on this task using audio
signal. However, the utilization of audio could be restricted in
certain situations like noisy environment or when privacy-preserving
is required [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Thus, some research explores this task by analysing
human body behaviour [
        <xref ref-type="bibr" rid="ref5 ref7">5, 7</xref>
        ].
      </p>
      <p>
        The 2019 No-Audio Multimodal Speech Detection Task[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]
provides recorded data of speakers in social situations. Visual signal
is captured through over-head cameras. Besides, tri-axial body
accelerations are collected using wearable devices [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. The modality
signals are captured at 20Hz FPS, while the binary speaking status
are annotated at each time-step.
      </p>
      <p>In our work, we estimate human body pose and movement using
the multimodal signals. The accelerators provide information about
the overall movement of a person. However, it cannot describe
body language which is expressed by the movement and pose of
human body. Thus, we estimate body pose points in every frame to
represent detailed body movement. The detail of proposed approach
is described in Section 2.</p>
    </sec>
    <sec id="sec-2">
      <title>APPROACH</title>
      <p>In this section, we introduce our framework for no-audio speech
detection. The framework consists of two components: multimodal
representation and sequential classification. The first component
extracts multimodal feature representations while the second
component classifies the sequential data.</p>
    </sec>
    <sec id="sec-3">
      <title>Multimodal Representation</title>
      <p>
        Two types of modalities are utilized in our framework: tri-axial
acceleration and visual. For tri-axial acceleration signal, we follow the
method of [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Acceleration features are extracted from 3s windows
with 1.5s overlap of the raw signal, absolute values of signal and
the magnitude of the acceleration. Mean, variance and the power
spectral density are calculated to form the final representation. The
70 dimension acceleration feature Xacce is standardised to have
zero mean and unit variance.
      </p>
      <p>
        To extract visual representation, we utilize the Regional
MultiPerson Pose Estimation Model [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. This model consists of two
components: Symmetric Spatial Transformer Network (SSTN) and
Parametric Pose Non-Maximum-Suppression (p-Pose NMS). The
SSTN network combines the spatial transformer network (STN),
single-person pose estimator [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] (SPPE) and spatial detransformer
network [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] (SDTN). The STN selects the potential area of human
body and the SPPE estimate the body pose. Then, the estimated
human pose is mapped back to the original image coordinate. The
NMS is used to eliminate redundant pose estimations. During the
training progress, Pose-Guided Proposals Generator is utilized to
augment the training data. The extracted 34 dimension pose feature
Xpose is normalized per speaker.
2.2
      </p>
    </sec>
    <sec id="sec-4">
      <title>Sequential Logistic Classification</title>
      <p>Given the multimodal feature representation of speech data, we
follow a sequential classification scheme to predict the speech status.
However, The typical sequential model may face the challenge of
limited data that could be used for training. Instead, we use logistic
regression model to classify speech statues at time-step. Then, a
iflter is used to eliminate the outlier of prediction.</p>
      <p>Specifically, given feature Xacce and Xpose , we firstly
concatenate them to be Xcon . A logistic classifier hΘ(X ) = f (ΘT Xcon +b) is
utilized to train and predict the binary speech status yt at time-step
t . The sequential prediction ys (t ) of a speaker is then convoluted by
a N dimensional filter д(t ): Y = ys (t )∗д(t ), where д(t ) = [ N , N1 , ...]
1</p>
    </sec>
    <sec id="sec-5">
      <title>RESULTS AND ANALYSIS</title>
      <p>We evaluate the performance of the proposed method on the
MediaEval 2019 No-Audio Multimodal Speech Detection Task Dataset.
The data is split into training set and testing set, with 54 and 16
videos respectively. Each video is 22 minutes long. Logistic
regression model is trained to predict binary speech status at each
timestep. For training the logistic regression model, 54×22×60=71280
samples are used. To evaluate the model performance, we utilize
three-fold cross validation on the training set, with the result shown
in Table 2. Results are measured by the Area Under the ROC Curve
(AUC).</p>
      <p>Testing is done on each video of testing set. After gaining the
prediction on test videos, a N dimensional filter [ N1 , N1 , ...] is
convoluted with the prediction probability vector to smooth the output.
The dimension N is chosen through grid search on the training set.
The testing results are shown in Table 3. From the result, we can
see that the acceleration signal outperforms visual signal. Though
the fusion prediction gets higher result on the training data, its
testing performance is not as good as acceleration modality.</p>
      <p>It is understandable that utilizing visual signal is very challenging
in this task, especially with the limited video data. In spite of the
large number of image frames that could be used to train image
level classifier, it is actually dificult to tackle the task with image
classifier. Considering that, we employed pose estimator trained
on larger video dataset. However, the position of the camera from
which the data was recorded is diferent from regular video. Thus,
the pose estimator does not work well in this task, which brings
large proportion of inaccurate pose features. In comparison, the
acceleration signal is acquired by wearable physical sensor, which
guarantees its reliability. Despite this, as we mentioned before, the
acceleration signal is ambiguous about the local body movement.
It is still important to explore more eficient and accurate visual
feature representation.
4</p>
    </sec>
    <sec id="sec-6">
      <title>DISCUSSION AND OUTLOOK</title>
      <p>In this paper, we describe our work for no-audio speech detection.
We estimate speaker pose and movement through cameras and
acceleration sensors. The multimodal features are combined and
utilized for per-second speech status prediction. Results show that
acceleration modality outperforms visual modality. In the future,
Subject ID
0.6735
0.6759
0.7465
0.6556
0.7023
0.5429
0.6123
0.6751
0.4020
0.6652
0.6067
0.5718
0.7621
0.8573
0.6234
0.5274
0.4234
0.5127
0.4958
0.5555
0.4557
0.5131
0.4733
0.5484
0.2527
0.6763
0.6430
0.5812
0.6173
0.4529
0.5034
0.5100
0.5742
0.6534
0.7438
0.6539
0.6225
0.5468
0.5701
0.6421
0.2588
0.7191
0.6611
0.6254
0.7590
0.7941
0.5682
0.5208</p>
    </sec>
    <sec id="sec-7">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work is supported by the Fundamental Research Funds for the
Central Universities.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Hao-Shu</surname>
            <given-names>Fang</given-names>
          </string-name>
          , Shuqin Xie,
          <string-name>
            <surname>Yu-Wing Tai</surname>
            , and
            <given-names>Cewu</given-names>
          </string-name>
          <string-name>
            <surname>Lu</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>RMPE: Regional Multi-person Pose Estimation</article-title>
          . In ICCV.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Ekin</given-names>
            <surname>Gedik</surname>
          </string-name>
          , Laura Cabrera-Quiros, and
          <string-name>
            <given-names>Hayley</given-names>
            <surname>Hung</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>No-Audio Multimodal Speech Detection task at MediaEval 2019</article-title>
          .
          <source>In Proc. of the MediaEval 2019 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Hayley</given-names>
            <surname>Hung</surname>
          </string-name>
          , Gwenn Englebienne, and
          <string-name>
            <given-names>Jeroen</given-names>
            <surname>Kools</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Classifying social actions with a single accelerometer</article-title>
          .
          <source>In Proceedings of the 2013 ACM international joint conference on Pervasive and ubiquitous computing. ACM</source>
          ,
          <volume>207</volume>
          -
          <fpage>210</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Max</given-names>
            <surname>Jaderberg</surname>
          </string-name>
          , Karen Simonyan,
          <string-name>
            <given-names>Andrew</given-names>
            <surname>Zisserman</surname>
          </string-name>
          , and others.
          <source>2015</source>
          .
          <article-title>Spatial transformer networks</article-title>
          .
          <source>In Advances in neural information processing systems</source>
          . 2017-
          <fpage>2025</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Yang</surname>
            <given-names>Liu</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhonglei Gu</surname>
          </string-name>
          , and
          <string-name>
            <surname>Tobey H Ko</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Analyzing Human Behavior in Subspace: Dimensionality Reduction+ Classification.</article-title>
          .
          <source>In MediaEval.</source>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Alejandro</given-names>
            <surname>Newell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Kaiyu</given-names>
            <surname>Yang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Jia</given-names>
            <surname>Deng</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Stacked hourglass networks for human pose estimation</article-title>
          .
          <source>In European conference on computer vision</source>
          . Springer,
          <fpage>483</fpage>
          -
          <lpage>499</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Laura</given-names>
            <surname>Cabrera</surname>
          </string-name>
          <string-name>
            <surname>Quiros</surname>
          </string-name>
          , Ekin Gedik, and
          <string-name>
            <given-names>Hayley</given-names>
            <surname>Hung</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Transductive Parameter Transfer, Bags of Dense Trajectories and MILES for No-Audio Multimodal Speech Detection.</article-title>
          .
          <source>In MediaEval.</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>