<!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>Exploring the use of local descriptors for recognition in LifeCLEF 2015 sh</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Jorge Cabrera-Gamez, Modesto Castrillon-Santana, Antonio Dom nguez-Brito, Daniel Hernandez-Sosa</institution>
          ,
          <addr-line>Josep Isern-Gonzalez, and Javier Lorenzo-Navarro</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>SIANI Universidad de Las Palmas de Gran Canaria</institution>
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper summarizes the proposal made by the SIANI team for the LifeCLEF 2015 Fish task. The approach makes use of standard detection techniques, applying a multiclass SVM based classi er on large enough Regions Of Interest (ROIs) automatically extracted from the provided video frames. The selection of the detection and classi cation modules is based on the best performance achieved for the validation dataset consisting of 20 annotated videos. For that dataset, the best classi cation achieved for an ideal detection module, reaches an accuracy around 40%.</p>
      </abstract>
      <kwd-group>
        <kwd>Local descriptors</kwd>
        <kwd>score level fusion</kwd>
        <kwd>SVM based classi cation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>There are di erent scenarios of application where underwater monitoring is a
required ability such as biological, sheries, geological and physical surveys. The
everyday larger availability of media captured in this environment poses the
challenge to extract useful data automatically. This is indeed a hard scenario
where e ective techniques are needed to reduce costs and human exposition.</p>
      <p>
        With this aim, CLEF presented in 2014 for the rst time LifeCLEF: the Labs
dedicated to multimedia life species identi cation [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], including FishCLEF: a
video-based sh identi cation task. The short term goal was simply to
automatically detect any sh and its species. The medium term goal is to provide
researchers tools to automatically monitor species with high accuracy, in
order to extract information of living species for a sustainable development and
biodiversity conservation.
      </p>
      <p>
        This year the Labs [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and task have been reedited [
        <xref ref-type="bibr" rid="ref11 ref14">11, 14</xref>
        ]. The participants
could initially access to training data, to later submit labels for the test set. The
task to be accomplished was \count sh per species in video segments".
      </p>
      <p>This paper describes the approach adopted by the SIANI team. The following
sections detail the di erent elements integrated that basically perform initially
a detection to later identify the sh species of the cropped image.</p>
    </sec>
    <sec id="sec-2">
      <title>The approach</title>
      <p>As succinctly mentioned above, the sh identi cation task has been decomposed
into two phases: detection and classi cation.
2.1</p>
      <sec id="sec-2-1">
        <title>Detection</title>
        <p>The goal of the detection phase is to reduce the searching area extracting
candidate ROIs from the video stream. Three di erent foreground detection
approaches have been tested: fast, histogram backprojection and Gaussian Mixture
Modeling (GMM).
(1)
(2)
Fast. This approach makes use of a simple and fast background model computed
from the video frames, that is robust enough for the detection and extraction
problem in some scenarios. This background modeling solution takes advantage
of the static camera con guration in this particular scenario.</p>
        <p>
          To de ne the scene background model, bg, we have used a similar method
to commonly-used techniques like mean lter or median lter [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. We compute
the mode image, I, that is calculated as the most frequent values in each RGB
component of each pixel each pixel along the video frames.
        </p>
        <p>Once the background model is available, simple and fast background
subtraction techniques may be applied in each RGB component of the input image, I.
The foreground is computed based on a de ned threshold applied to the sum of
squares of RGB components of the subtracted image (DR; DB; DG) pixel value</p>
        <p>S(i; j) = DR(i; j)2 + DG(i; j)2 + DB(i; j)2
where Dx = Ix bgx for every RGB component (x = R; G; B).</p>
        <p>For a pixel in a given image, I(i; j), its corresponding pixel in the foreground
image, f g, is computed as</p>
        <p>
          Histogram Backprojection (BackProj). The second detection method
evaluated is inspired in the idea proposed in [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] that we have adapted to background
segmentation. The method is based on the backprojection of temporal color
histogram, and comprises the following steps:
1. Calculate for each color component the temporal histogram of every image
pixel: hx = histt(Ix(i; j))
2. Add to each histogram bin, k, the values of its neighborhood, s,
(convolution mask): cx(k) = Pk+s
        </p>
        <p>l=k s(hx(l))
3. Normalize the resulting histogram: hx(k) = cx(k)=max(cx)
4. Backproject the histogram on every image: Px(i; j) = hx(Ix(i; j))
5. Sum the squares of values of each component of the pixels: S(i; j) = PR(i; j)2+</p>
        <p>PG(i; j)2 + PB(i; j)2
6. Use a threshold to separate the foreground of the background:</p>
        <p>
          GMM Based Background Modeling (GMM). The third background
subtraction method analyzed is the one proposed by Zivkovic and van der
Heijden [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]. This method performs a pixel-level background subtraction, modeling
each background pixel with a GMM, extending the method proposed by Stau er
and Grimson [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. Thus the background model is de ned as:
(3)
(4)
p(xjXT ; bg)
        </p>
        <p>B
X ^mN (x; ^ m; ^m2Id)
m=1
where XT = fx(t); : : : ; x(t T )g is the training set, for the time period T , ^ 1; : : : ; ^ B
are the estimates of the means, ^1; : : : ; ^B are the estimates of the variances,
and Id is the identity matrix. B is the number of components weighted by ^m.</p>
        <p>An optimization process was launched over the training videos to try to nd
a suitable con guration for the GMM foreground detection algorithm, including
the number of distributions, the background ratio and the number of training
frames and learning rates.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Classi cation</title>
        <p>Detected ROIs are fed to the detection phase to identify the sh species. The
classi cation phase has been designed based on local descriptors, that are
currently well known techniques in di erent Computer Vision (CV) problems.</p>
        <p>
          In texture analysis, an image is described in terms of a local descriptor codes
making use of a histogram, hi, where the bins contain the number of occurrences
of the di erent descriptor codes present in the image. This approach follows a
Bag of Words scheme [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. For some problems, the use of a single histogram may
introduce the loss of spatial information. To avoid this e ect, a grid of cells is
used de ning the number of horizontal and vertical cells, respectively cx and cy,
making a total of cx cy cells on the analyzed pattern.
        </p>
        <p>Once de ned the grid setup, for a particular descriptor, d, the resulting
feature vector, xId, contains the concatenation of cx cy cell histograms, i.e. the
feature vector is de ned as xId = fh1; h2; :::; hcx cyg, where hi is the descriptor
histogram for cell i.</p>
        <p>
          In this particular task, we have evaluated di erent descriptors and grid
congurations. In this sense, we have considered the following 8 descriptors:
{ Histogram of Oriented Gradients (HOG) [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
{ Local Binary Patterns (LBP) and uniform Local Binary Patterns (LBPu2) [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ].
{ Local Gradient Patterns (LGP) [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ].
{ Local Ternary Patterns (LTP) [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ].
{ Local Phase Quantization (LPQ) [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ].
{ Weber Local Descriptor (WLD) [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ].
        </p>
        <p>
          { Local Oriented Statistics Information Booster (LOSIB) [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ].
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Results</title>
      <p>
        This section describes the results obtained for the di erent sh identi cation
task phases, highlighting those con gurations that were submitted to the 2015
Lab focused on this particular problem [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
Before granting the access to the test data, the organizers provided two datasets,
see Figure 1. Even though a better description of the data may be found in [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ],
we summarize some relevant characteristics below.
      </p>
      <p>The rst dataset, that we call the training dataset, is a collection of cropped
images of the di erent sh species. The second collection contains annotated
videos, including media that may present a similar scenario to the test data. We
called this collection the validation dataset.</p>
      <p>This validation dataset is used in the following subsections to analyze the
di erent detection and classi cation alternatives, providing a cue to decide the
nal system setup chosen for the Fish task submission. In fact, we used both
training and validation datasets to select the classi cation approach, and the
validation dataset, to select the detection technique and tune its parameters.</p>
      <p>Brie y, the training set contains samples of the 15 di erent sh species, i.e.
classes. The number of samples per species is indicated in Table 1. The reader
will observe that the di erent species are not equally represented through the
dataset, circumstance that also is present in the validation and test sets. The
average dimension in the training samples is 88 38 102 49 pixels.</p>
      <p>The validation dataset contains 9162 samples distributed per class according
to the last column of Table 1. The average dimension of those samples is 52
37 56 39 pixels.
3.2</p>
      <sec id="sec-3-1">
        <title>Detection Results</title>
        <p>
          As mentioned above, the annotated validation dataset videos were used to
analyze the performance of di erent detection algorithms. The detection rates for
the three implementations are shown in Table 2, being computed as the total
number of correct or positive detections divided by the number of annotations.
The false detection rate presented is also the ratio between the number of
unmatched or false detections and the number of annotations. This was done to
have a clear evidence of the number of false detections in relation to the number
of annotations. False detections do not necessarily mean a failure in the
detection module, but that there is not annotation for that particular frame and ROI.
Indeed, the annotations were done only when the sh species was clearly
identi able [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]. In this sense, we have made use of the minimal size for annotation,
and applied a dimension lter to remove small detected ROIs.
        </p>
        <p>A positive detection is considered when there is a signi cant intersection
between a given detection container, B and an annotation container, A. As
condence measure, we employed the Jaccard Index, J I. This index relates the
intersection of both containers with their union, J I = A\B , providing a value
A[B
between 0 and 1, larger values meaning better matching. For the analysis
summarized in Table 2, we have considered 0:4 and 0:5 threshold values.</p>
        <p>The high variability of the video segments made extremely di cult to obtain
a good tuning of the algorithm parameters. As a consequence, simple approaches
yielded better results both in execution time and detection. Indeed, among the
techniques analyzed, both Fast and BackProj algorithms provided not brilliant
but acceptable detection rates. Fast was chosen with di erent tuning parameters
to setup run1, while BackProj was used for the other two submitted runs (run2
and run3 ). The detection approach is later combined with the classi er providing
the best performance in the validation dataset classi cation.
3.3</p>
      </sec>
      <sec id="sec-3-2">
        <title>Classi cation Results</title>
        <p>The detection rates achieved, described in the previous section, allowed us to
explore our model based approach on the dataset. Certainly, a model approach
is not a priori the best solution for the unbalanced classi cation task, but being
newcomers, we were interested in applying our experience in other CV problems
to evaluate local descriptors in this scenario.</p>
        <p>The analysis described in this section presents results in two steps. Firstly,
the study evaluates di erent descriptors with the training set, i.e. the collection
of cropped images, see Table 1. Secondly, the best descriptors are later evaluated
with the validation dataset, to adopt the most promising con guration for the
test set.</p>
        <p>
          Table 3 summarizes the results for di erent local descriptors in a 5-fold cross
validation experiment de ned on the provided training dataset, considering a
single multi-class SVM based classi er. This kind of approach has already been
applied for the task [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. Each descriptor is evaluated for di erent grid con
gurations in the ranges cx 2 [1; 4] and cy 2 [1; 4]. Unfortunately, for the given
deadline (its extension was not evident), we could not manage to evaluate all
the grid con gurations with dimensions larger than 3 3.
        </p>
        <p>With the exception of WLD, the whole collection of descriptors reported a
high accuracy at least for a particular grid setup. However, this was not the
case in the following analysis on the annotated ROIs extracted from the
validation dataset, as summarized in Table 4. It seems, that the grid con guration is
important for some descriptors. A larger number of cells is preferred for HOG,
LBPu2, LGP and LOSIB, while other descriptors such as LBP, LTP and LPQ
provide better results with a lower number of cells. Again, WLD is not providing
useful classi cation results.</p>
        <p>
          Considering the vital importance of combining several descriptors [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ], a
further evaluation of a fusion approach was considered. According to the score level
(SL) fusion literature and previous results in the context of facial processing [
          <xref ref-type="bibr" rid="ref4 ref9">4,
9</xref>
          ], we adopted a score level fusion approach where the rst layer is composed by
a set of classi ers designed according to the chosen descriptors, while the
second layer classi er takes the rst layer scores as input. In summary, the fusion
alternatives analyzed below follow the approach outlined in Figure 2.
        </p>
        <p>Table 5 summarizes the results achieved for di erent fusion alternatives. The
selection of descriptors and grids are based on the single descriptors results
achieved for the validation dataset, see again Table 4. This table does not include
results with 4 4 grids, as they were not available in time for the deadline.</p>
        <p>The rst three alternatives combine the best descriptors for a given grid
resolution; the higher the resolution, the better the accuracy. However, there is
no real restriction to make use of a unique grid resolution. For that reason we
also evaluated the fusion of the best descriptors with di erent grid resolutions,
achieving the best overall accuracy with a RBF kernel using the rst 90 PCA
components.</p>
        <p>For each combination, the selected descriptors and grid setups are indicated,
reporting the results using SVM based classi ers, including linear and RBF
kernels, with and without a previous dimensionality reduction by means of a
Principal Component Analysis (PCA).</p>
        <p>The best performing classi er, the fourth combination using RBF kernel
with a PCA based features, is used in combination with the selected detection
approaches.
3.4</p>
      </sec>
      <sec id="sec-3-3">
        <title>Discussion</title>
        <p>As mentioned above, our team submitted three runs. They all made use of an
identical second phase based on a two stages classi er. The selected descriptors
combination is the one highlighted in Table 5. This score fusion selection contains
six single descriptor classi ers in the rst stage: LTP1 1, LPQ1 1, HOG3 3,
LBP3u2 3, LGP3 3 and LOSIB3 3. The second stage makes use of the classi ers
scores, that are projected into a PCA space.</p>
        <p>Each run di ers in its detection phase. Our rst run made use of the Fast
detection algorithm, while the other two integrate the BackProj detector with
di erent parameters setup.</p>
        <p>The normalized counting scores of the referred runs in the overall Lab
analysis are reported in Figure 3. Two teams are over 50%, followed at a remarkable
distance by the best runs of other two teams, including our run3, achieving over
30%. Our main focus was on the classi cation phase, that has provided
unbalanced results for di erent classes, likely due to the non homogeneous number
of training samples per class. A focus based exclusively on the fusion of local
descriptors seems not to be reliable enough for the problem. However, the
detection phase requires further attention as a larger number of proper detections
would improve the overall score.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusions</title>
      <p>This document describes the model based approach submitted to the LifeCLEF
2015 Fish task by the SIANI team. The proposal explores the use of local
descriptors for this problem. We employed standard detection techniques to later
apply an ensemble of SVM multiclass classi ers.</p>
      <p>Three runs were submitted with identical classi cation stage. One is based on
the Fast detection algorithm, while the other two are based on the BackProj
algorithm.</p>
      <p>The best accuracy achieved for the ideal annotated containers reaches 40%,
suggesting that the approach is still far from being reliable in this scenario. In
the close future, our aim is on the one side at improving detection, that might be
combined with tracking. On the other side, once we have observed the problems
originated in the multiclass classi cation of an unbalanced dataset, and apart
from computing more dense grids, we should explore the combination with other
techniques to leverage the classi cation stage.</p>
      <p>Acknowledgments. Work partially funded by the Institute of Intelligent
Systems and Numerical Applications in Engineering and the Computer Science
Department at ULPGC.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Ahonen</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hadid</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , Pietikainen, M.:
          <article-title>Face description with local binary patterns: Application to face recognition</article-title>
          .
          <source>IEEE Transactions on Pattern Analysis and Machine Intelligence</source>
          <volume>28</volume>
          (
          <issue>12</issue>
          ) (
          <year>December 2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Blanc</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lingrand</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Precioso</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Fish species recognition from video using svm classi er</article-title>
          .
          <source>In: CLEF (Working Notes)</source>
          . pp.
          <volume>778</volume>
          {
          <issue>784</issue>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ferro</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , San Juan, E. (eds.):
          <article-title>CLEF 2015 Labs and Workshops, Notebook Papers</article-title>
          .
          <source>CEUR Workshop Proceedings (CEUR-WS.org)</source>
          (
          <year>2015</year>
          ), ISSN 1613-0073, http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>1391</volume>
          /.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Castrillon</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lorenzo</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramon</surname>
          </string-name>
          , E.:
          <article-title>Improving gender classi cation accuracy in the wild</article-title>
          .
          <source>In: 18th Iberoamerican Congress on Pattern Recognition (CIARP)</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>He</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pietikainen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>W.:</given-names>
          </string-name>
          <article-title>WLD: A robust local image descriptor</article-title>
          .
          <source>Pattern Analysis and Machine Intelligence</source>
          ,
          <source>IEEE Transactions on 32(9)</source>
          ,
          <volume>1705</volume>
          {1720 (
          <year>September 2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Csurka</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dance</surname>
            ,
            <given-names>C.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fan</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Willamowski</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Bray.,
          <string-name>
            <surname>C.</surname>
          </string-name>
          :
          <article-title>Visual categorization with bags of keypoints</article-title>
          .
          <source>In: Workshop on Statistical Learning in Computer Vision</source>
          , ECCV. pp.
          <volume>1</volume>
          {
          <issue>22</issue>
          (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Dalal</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Triggs</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Histograms of oriented gradients for human detection</article-title>
          . In: Schmid,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Soatto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Tomasi</surname>
          </string-name>
          , C. (eds.) International Conference on Computer Vision &amp;
          <article-title>Pattern Recognition</article-title>
          . vol.
          <volume>2</volume>
          , pp.
          <volume>886</volume>
          {
          <issue>893</issue>
          (
          <year>June 2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Garc</surname>
            a-Olalla,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alegre</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fernandez-Robles</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gonzalez-Castro</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Local oriented statistics information booster (LOSIB) for texture classi cation</article-title>
          .
          <source>In: International Conference in Pattern Recognition (ICPR)</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Heisele</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Serre</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Poggio</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>A component-based framework for face detection and identi cation</article-title>
          .
          <source>International Journal of Computer Vision Research</source>
          <volume>74</volume>
          (
          <issue>2</issue>
          ) (
          <year>August 2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Joly</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , Goeau, H.,
          <string-name>
            <surname>Glotin</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spampinato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bonnet</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vellinga</surname>
            ,
            <given-names>W.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Planque</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rauber</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , Fisher, R., Muller, H.:
          <article-title>Lifeclef 2014: Multimedia life species identi cation challenges</article-title>
          .
          <source>In: nformation Access Evaluation. Multilinguality</source>
          , Multimodality, and Interaction, Lecture Notes in Computer Science Volume, vol.
          <volume>8685</volume>
          , pp.
          <volume>229</volume>
          {
          <fpage>249</fpage>
          . Springer (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Joly</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , Muller, H., Goeau, H.,
          <string-name>
            <surname>Glotin</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spampinato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rauber</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bonnet</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vellinga</surname>
            ,
            <given-names>W.P.</given-names>
          </string-name>
          , Fisher,
          <string-name>
            <surname>B.</surname>
          </string-name>
          :
          <article-title>Lifeclef 2015: multimedia life species identi cation challenges</article-title>
          .
          <source>In: Proceedings of CLEF</source>
          <year>2015</year>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Jun</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
            .,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Robust face detection using local gradient patterns and evidence accumulation</article-title>
          .
          <source>Pattern Recognition</source>
          <volume>45</volume>
          (
          <issue>9</issue>
          ),
          <volume>3304</volume>
          {
          <fpage>3316</fpage>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Lo</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Velastin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Automatic congestion detection system for underground platforms</article-title>
          .
          <source>In: Proceedings of 2001 International Symposium on Intelligent Multimedia, Video and Speech Processing</source>
          . pp.
          <volume>158</volume>
          {
          <issue>161</issue>
          (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Spampinato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fisher</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Boom</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Lifeclef sh identi cation task 2015</article-title>
          . In: CLEF working notes
          <year>2015</year>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <article-title>Stau er, Grimson: Adaptive background mixture models for real-time tracking</article-title>
          .
          <source>In: IEEE Computer Society Conference on Computer Vision and Pattern Recognition</source>
          . pp.
          <volume>246</volume>
          {
          <issue>252</issue>
          (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Swain</surname>
            ,
            <given-names>M.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ballard</surname>
            ,
            <given-names>D.H.</given-names>
          </string-name>
          :
          <article-title>Color indexing</article-title>
          .
          <source>International Journal on Computer Vision</source>
          <volume>7</volume>
          (
          <issue>1</issue>
          ),
          <volume>11</volume>
          {
          <fpage>32</fpage>
          (
          <year>1991</year>
          ), http://www.springerlink.com/content/ n231l41541p12l1g/
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Tan</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Triggs</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Enhanced local texture feature sets for face recognition under di cult lighting conditions</article-title>
          .
          <source>Image Processing, IEEE Transactions on 19(6)</source>
          ,
          <volume>1635</volume>
          {
          <fpage>1650</fpage>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18. V, O.,
          <string-name>
            <surname>J.</surname>
          </string-name>
          , H.:
          <article-title>Blur insensitive texture classi cation using local phase quantization</article-title>
          .
          <source>In: Proc. Image and Signal Processing (ICISP)</source>
          . pp.
          <volume>236</volume>
          {
          <issue>243</issue>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , J.,
          <string-name>
            <surname>Marszalek</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lazebnik</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmid</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Local features and kernels for classi cation of texture and object categories: a comprehensive study</article-title>
          .
          <source>International Journal of Computer Vision</source>
          <volume>73</volume>
          (
          <issue>2</issue>
          ),
          <volume>213</volume>
          {
          <fpage>238</fpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Zivkovic</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>der Heijden</surname>
          </string-name>
          , F.:
          <article-title>E cient adaptive density estimation per image pixel for the task of background subtraction</article-title>
          .
          <source>Pattern Recognition Letters</source>
          <volume>27</volume>
          ,
          <issue>773</issue>
          {
          <fpage>780</fpage>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>