<!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>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ismael Serrano</string-name>
          <email>Ismael.Serrano@uclm.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Oscar Déniz</string-name>
          <email>Oscar.Deniz@uclm.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gloria Bueno</string-name>
          <email>Gloria.Bueno@uclm.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>VISILAB group, University of Castilla-La Mancha E.T.S.I.Industriales</institution>
          ,
          <addr-line>Avda. Camilo José Cela 3, 13071 Ciudad Real</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2013</year>
      </pub-date>
      <fpage>18</fpage>
      <lpage>19</lpage>
      <abstract>
        <p>Fight detection from video is a task with direct application in surveillance scenarios like prison cells, yards, mental institutions, etc. Work in this task is growing, although only a few datasets for ght detection currently exist. The Violent Scene Detection task of the MediaEval initiative offers a practical challenge for detecting violent video clips in movies. In this working notes paper we will brie y describe our method for ght detection. This method has been used to detect ghts within the above-mentioned violent scene detection task. Inspired by results that suggest that kinematic features alone are discriminative for at least some actions, our method uses extreme acceleration patterns as the main feature. These extreme accelerations are e ciently estimated by applying the Radon transform to the power spectrum of consecutive frames.</p>
      </abstract>
      <kwd-group>
        <kwd>Action recognition</kwd>
        <kwd>violence detection</kwd>
        <kwd>ght detection</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        In the last years, the problem of human action recognition
from video has become tractable by using computer vision
techniques [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Despite its potential usefulness, the speci c
task of violent scene detection has been comparatively less
studied. The annual MediaEval evaluation campaign
introduced this speci c problem in 2011. For an overview of this
year`s task please see [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
    </sec>
    <sec id="sec-2">
      <title>PROPOSED METHOD</title>
      <p>
        The presence of large accelerations is key in the task of
ght detection ([
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] and [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]). In this context, body part
tracking can be considered, as in [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], which introduced the
so-called Acceleration Measure Vectors (AMV). In general,
acceleration can be inferred from tracked point trajectories.
However, extreme acceleration implies image blur (see for
example Figure 1), which makes tracking less precise or even
impossible.
      </p>
      <p>Motion blur entails a shift in image content towards low
frequencies. Such behaviour allows building an e cient
acceleration estimator for video. Our proposed method works
with sequences of 50 frames; therefore we need to divide the
shots in 50-frame clips. First, we compute the power
spectrum of two consecutive frames. It can be shown that, when
there is a sudden motion between two consecutive frames,
the power spectrum image of will depict an ellipse. The
orientation of the ellipse is perpendicular to the motion
direction, the frequencies outside the ellipse being attenuated.
Most importantly, the eccentricity of this ellipse is
dependent on the acceleration. Basically, the proposed method
aims at detecting the sudden presence of such ellipse.</p>
      <p>Our objective is then to detect such ellipse and estimate its
eccentricity, which represents the magnitude of the
acceleration. Ellipse detection can be reliably performed using the
Radon transform, which provides image projections along
lines with di erent orientations.</p>
      <p>For each pair of consecutive frames, we compute the power
spectrum using the 2D Fast Fourier Transform (in order to
avoid edge e ects, a Hanning window is applied before
computing the FFT). Let us call these spectra images Pi 1 and
Pi. These images are divided, i.e. C = Pi=Pi 1.</p>
      <p>When there is no change between the two frames, the
power spectra will be equal and C will have a constant value.
When motion has occurred, an ellipse will appear in C.
Ellipse detection can be reliably performed using the Radon
transform.</p>
      <p>After applying the Radon transform to image C, its
vertical maximum projection vector is obtained and normalized
(to maximum value 1). Next when there is an ellipse, this
vector will show a sharp peak, representing the major axis
of the ellipse. The kurtosis of this vector is therefore taken
as an estimation of the acceleration.</p>
      <p>Note that kurtosis alone cannot be used as a measure,
since it is obtained from a normalized vector (i.e. it is
dimensionless). Thus, the average value per pixel P of image
C is also computed, taken as an additional feature. Without
it, any two frames could lead to high kurtosis even without
signi cant motion.</p>
      <p>Deceleration was also considered as an additional feature,
and it can be obtained by reversing the order to consecutive
frames and applying the same algorithm explained above.
For every short clip, we compute histograms of these
features, so that acceleration/deceleration patterns can be used
for discrimination.</p>
      <p>Once we have features for every clip, for classi cation
we use two di erent classi ers: the well-known K-Nearest
Neighbours and Support Vector Machine (SVM) with a
lineal kernel.</p>
      <p>The method described requires training clips that contain
ghts. Thus, when ght sequences are given, they may have
to be rst evaluated for ght subsequences.</p>
    </sec>
    <sec id="sec-3">
      <title>EXPERIMENT</title>
      <p>Sometimes, within a violent segment non- ght clips may
appear. For each violent segment (as provided by
MediaEval organizers), we manually removed clips without ghting
action. Moreover, random clips of 50 consecutive frames,
taken outside the violent segments, were selected for the
non- ght class. We trained the two classi ers for the ght
concept. Then we apply the two trained classi ers to every
50 consecutive frames of the test set.</p>
      <p>
        We submitted 2 runs and the details of performances are
as follows. Table 1 reports AED [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] precision, AED recall
and AED F-measure values, whereas Table 2 shows the
evaluation results for the submitted runs, MAP at 20 and 100.
4.
      </p>
    </sec>
    <sec id="sec-4">
      <title>CONCLUSIONS</title>
      <p>Based on the observation that kinematic information may
su ce for human perception of various actions, in this work a
novel ght detection method is proposed which uses extreme
acceleration patterns as the main discriminating feature.</p>
      <p>In experiments with other datasets we obtained accuracies
above 90%, and processing times of a few milliseconds per
frame. The results on the MediaEval dataset are, however,
very poor. We suppose it could be due to the test ground
truth (used by the organizers to obtain the performance
measures). The category 'violence' is more general because
includes violent scenes that could include explosions, shots,
car chases, ghts, etc. Although we had ' ght' labelled
training videos, that label was not available for test videos. What
is more, the de nition of 'violence' in MediaEval is "physical
violence or accident resulting in human injury or pain", so
we were able to detect only part of the violence: ghts.</p>
      <p>On the other hand, there are a number of practical
aspects that are not taken into account. In many surveillance
scenarios, for example, we do not have access to color
images and audio, and the typical forms of violence are ghts
and vandalism, instead of explosions, car chases, etc. The
processing power needed for running detection algorithms is
also an important issue in those applications.
5.</p>
    </sec>
    <sec id="sec-5">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work has been supported by Project TIN2011-24367
from Spain's Ministerio de Econom a y Competitividad.</p>
      <p>The authors also thank the MediaEval organizers for
inviting us to participate.
6.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>G.</given-names>
            <surname>Castellano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Villalba</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Camurri</surname>
          </string-name>
          .
          <article-title>Recognising human emotions from body movement and gesture dynamics</article-title>
          .
          <source>A ective Computing and Intelligent Interaction</source>
          ,
          <volume>4738</volume>
          (
          <issue>1</issue>
          ):
          <volume>17</volume>
          {
          <fpage>82</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>T. J.</given-names>
            <surname>Clarke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. F.</given-names>
            <surname>Bradshaw</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. T.</given-names>
            <surname>Field</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. E.</given-names>
            <surname>Hampson</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Rose</surname>
          </string-name>
          .
          <article-title>The perception of emotion from body movement in point-light displays of interpersonal dialogue</article-title>
          .
          <source>Perception</source>
          ,
          <volume>34</volume>
          (
          <issue>1</issue>
          ):
          <volume>1171</volume>
          {
          <fpage>1180</fpage>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Datta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Shah</surname>
          </string-name>
          , and
          <string-name>
            <given-names>N. D. V.</given-names>
            <surname>Lobo</surname>
          </string-name>
          .
          <article-title>Person-on-person violence detection in video data</article-title>
          .
          <source>Pattern Recognition. Proceedings. 16th International Conference</source>
          ,
          <volume>1</volume>
          (
          <issue>1</issue>
          ):
          <volume>433</volume>
          {
          <fpage>438</fpage>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>C. H.</given-names>
            <surname>Demarty</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Penet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Schedl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ionescu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Quang</surname>
          </string-name>
          , and
          <string-name>
            <surname>Y. G. Jiang.</surname>
          </string-name>
          <article-title>The 2013 A ect Task: Violent Scenes Detection</article-title>
          . In MediaEval 2013 Workshop, Barcelona, Spain, October
          <volume>18</volume>
          -19
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>R.</given-names>
            <surname>Poppe</surname>
          </string-name>
          .
          <article-title>A survey on vision-based human action recognition</article-title>
          .
          <source>Image and Vision Computing</source>
          ,
          <volume>28</volume>
          (
          <issue>6</issue>
          ):
          <volume>976</volume>
          {
          <fpage>990</fpage>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>M.</given-names>
            <surname>Saerbeck</surname>
          </string-name>
          and
          <string-name>
            <given-names>C.</given-names>
            <surname>Bartneck</surname>
          </string-name>
          .
          <article-title>Perception of a ect elicited by robot motion</article-title>
          .
          <source>In Proceedings of the 5th ACM/IEEE international conference on Human-robot interaction</source>
          ,
          <volume>10</volume>
          (
          <issue>1</issue>
          ):
          <volume>53</volume>
          {
          <fpage>60</fpage>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>