<!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>Increasing Relevance and Diversity in Photo Retrieval by Result Fusion</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Yih-Chen Chang and Hsin-Hsi Chen Department of Computer Science and Information Engineering National Taiwan University Taipei</institution>
          ,
          <country country="TW">Taiwan</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper considers the strategies of query expansion, relevance feedback and result fusion to increase both relevance and diversity in photo retrieval. In the text-based retrieval only experiments, the run with query expansion has better MAP and P20 than that without query expansion, and only has 0.85% decrease in CR20. Although relevance feedback run increases both MAP and P20, its CR20 decreases 10.18% compared with non-feedback run. It shows that relevance feedback brings in relevant but similar images, thus diversity may be decreased. The run with both query expansion and relevance feedback is the best in the four text-based runs. In the content-based retrieval only experiments, the run without feedback outperforms the run with feedback. The latter has 10.84%, 9.13%, and 20.46% performance decrease in MAP, P20, and CR20. In the fusion experiment, integrating text-based and content-based retrieval not only reports more relevant images, but also more diverse ones.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>In the photo retrieval task of ImageCLEF 2008, the focus is shifted from cross
language image retrieval to promote diversity. Besides relevance, retrieving diverse
items representing different subtopics is also concerned. How to balance the
relevance and diversity is challenging. This paper studies the strategies of query
expansion and relevance feedback in text-based and content-based retrieval, and
shows how to merge the results of text and image queries to increase both relevance
and diversity.</p>
      <p>This paper is organized as follows. Sections 2, 3 and 4 present text-based
retrieval, content-based retrieval and combination of both, respectively. Section 5
shows the runs submmited for formal evaluation in the photo retrieval task, and
discsses the effects of different retrieval and fusion strategies.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Text-Based Retrieval</title>
      <p>In text-based retrieval, we consider the strategies of query expansion and
relevance feedback. Assume the text corpus T is composed of n terms, t1, t2, …, tn,
and a query Q contains m query terms, q1, q2, …, qm. We expand Q in the following
way.</p>
      <p>(1) For each corpus term ti and query term qj, compute P(qj | ti)=P(ti,qj)/ P(ti).
(2) For each corpus term ti, compute OverlapNum(ti,Q) defined below.</p>
      <p>OverlapNum(ti,Q) = cardinality{q | q∈Q, P(q | ti)&gt;0}</p>
      <p>m
(3) For all ti∈T, if ∑ P( q j | ti ) × OverlapNum( ti ,Q ) &gt; thd, then ti will be added
j=1
to new query Q’. In the experiments, thd is set to 1. In other words, the
original query terms which also appear in the corpus will be added into Q’.</p>
      <p>We adopt Lemur as our text IR system. The weighting function is BM25 with
parameters (K1=1.2, B=0.75, K3=7). For relevance feedback, we select the top-10
terms of the highest BM25 scores from the top-5 retrieved documents, and add them
to the query. The expanded terms have 1/2 weight of the original query terms.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Content-Based Retrieval</title>
      <p>For each image gi, we extract two kinds of features: SizeFeature(gi) and
ColorFeature(gi). These two functions are defined below.</p>
      <p>(1) SizeFeature(gi) = 0, if height(gi)&gt;width(gi)</p>
      <p>= 1, if height(gi)&lt;=width(gi)
(2) ColorFeature(gi): divide gi into 32×32 blocks, and extract their RGB values.
The similarity of two images, gi and gj, is computed as follows.</p>
      <p>(1) Compute the color similarity of gi and gj based on their color features.</p>
      <p>ColorSimilar(gi, gj) = number of blocks in gi and gj, whose R, G and B
value differences are not larger than 10.
(2) Compute the size similarity of gi and gj based on their size features.</p>
      <p>If SizeFeature(gi) and SizeFeature(gj) is the same, then SizeSimilar(gi,
gj)=1.5. Otherwise, SizeSimilar(gi, gj)=1.0.
(3) The similarity of gi and gj is in terms of SizeSimilar and ColorSimilar:</p>
      <p>Similar(gi, gj)= SizeSimilar(gi, gj) × ColorSimilar(gi, gj)</p>
    </sec>
    <sec id="sec-4">
      <title>4. Combining Text-based and Content-based Retrieval</title>
      <p>
        In image retrieval, we compute the similarities of the query images and all the
images in the data set and select the most similar image for media mapping
        <xref ref-type="bibr" rid="ref1">(Chen and
Chang, 2006)</xref>
        . The corresponding text description of the reported image is regarded
as a text query for further retrieval. The results of text-based and content-base
retrieval are merged in the following way. We normalize the scores of the two result
lists by the corresponding top-1 scores
        <xref ref-type="bibr" rid="ref2">(Tsai, Wang, and Chen, 2008)</xref>
        , i.e., the
normalized scores will be within 0 and 1, and merge the lists with the same weights
by their normalized scores.
      </p>
    </sec>
    <sec id="sec-5">
      <title>5. Experiments and Discussion</title>
      <p>We submit 7 runs shown below for the formal evaluation.
(1) NTU-EN-EN-AUTO-NOFB-TXT</p>
      <p>This run is baseline. We employ Lemur for text-based retrieval without
query expansion and relevance feedback.
(2) NTU-EN-EN-AUTO-FB-TXT</p>
      <p>This run employs Lemur for text-based retrieval with relevance feedback.
(3) NTU-EN-EN-AUTO-QE-NOFB-TXT</p>
      <p>This run employs Lemur for text-based retrieval with query expansion.
(4) NTU-EN-EN-AUTO-QE-FB-TXT</p>
      <p>This run employs Lemur for text-based retrieval with query expansion and
relevance feedback.
(5) NTU-IMG-EN-AUTO-NOFB-TXTIMG.</p>
      <p>This run employs content-based retrieval first, then adopts media mapping
to transform the image query to text query, and employs Lemur for
text-based retrieval without relevance feedback.
(6) NTU-IMG-EN-AUTO-FB-TXTIMG</p>
      <p>This run is similar to NTU-IMG-EN-AUTO-NOFB-TXTIMG except that
relevance feedback is done.
(7) NTU-EN-EN-AUTO-QE-FB-TXTIMG</p>
      <p>This run merges the results of NTU-IMG-EN-AUTO-FB-TXTIMG and
NTU-EN-EN-AUTO-QE-FB-TXT.</p>
      <p>The evaluation of the formal runs is based on mean average precision (MAP),
precision at 20 (P20) and instance recall at rank 20 (CR20), which calculates the
percentage of different clusters represented in the top 20. Table 1 lists the
experimental results of employing text query only. The run with query expansion
has better MAP and P20 than that without query expansion, and only has 0.85%
decrease in CR20. Although relevance feedback increases both MAP and P20 in
EN-EN-AUTO-FB-TXT run, its CR20 decreases 10.18% compared with
EN-EN-AUTO-NOFB-TXT. It shows that relevance feedback brings in relevant but
similar images, thus diversity may be decreased. The run with both query expansion
and relevance feedback is better than the other three runs. Compared with baseline,
it has 33.79%, 44.44%, and 0.27% increase in MAP, P20 and CR20, respectively.</p>
      <p>Table 2 lists the experimental results of employing sample images. In the
experiments, 3 example images are considered. The run without feedback
outperforms the run with feedback. The latter has 10.84%, 9.13%, and 20.46%
performance decrease in MAP, P20, and CR20. The possible reason of the drop in
precision is the top-5 retrieved images for feedback may be very specific. That may
introduce noises. Consider topic 43, sunset over water, as an example. The correct
image should contain both sunset and water. The query without feedback is “Sunset
at the sea the dark outlines of a mountain in the foreground the sun is rising over the
sea behind it a light orange sky in the background peru”. In the top-5 retrieved
images, only one contains both scenes, but all of them contain sunset scene. There
are 34 relevant images in the result list before feedback, and only 25 relevant images
after feedback. The MAP decreases from 0.1776 to 0.0535 after feedback. CR20
decreases more than MAP and P20. It shows pure relevance feedback is harmful to
diversity.</p>
      <p>Table 3 compares the performance of employing text query only, image query
only, and both. The fusion run, which achieves MAP 0.2809, P20 0.3769 and CR20
0.2763, is the best of our 7 submitted runs in the formal evaluation. It shows that
integrating text-based and content-based retrieval not only reports more relevant
images, but also more diverse ones.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>This paper considers query expansion, relevance feedback and result fusion to
deal with relevance and diversity in image retrieval. Query expansion is useful to
increase the precsion in text-based retrieval, but has a little negative effect on the
diversity. Relevance feedback is harmful to diversity when this strategy is used
independently or in single type of queries. Text-based and content-based retrievals
have their own special capability, so that both relevance and diversity are improved.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Hsin-Hsi Chen</surname>
          </string-name>
          and
          <string-name>
            <surname>Yih-Chen Chang</surname>
          </string-name>
          (
          <year>2006</year>
          ).
          <article-title>“Language Translation and Media Transformation in Cross-Language Image Retrieval</article-title>
          .
          <source>” Proceedings of 9th International Conference on Asian Digital Libraries, November 27-30</source>
          ,
          <year>2006</year>
          , Kyoto, Japan, Lecture Notes in Computer Science,
          <volume>4312</volume>
          ,
          <fpage>350</fpage>
          -
          <lpage>359</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Ming-Feng Tsai Yu-Ting Wang</surname>
          </string-name>
          and
          <string-name>
            <surname>Hsin-Hsi Chen</surname>
          </string-name>
          (
          <year>2008</year>
          ).
          <article-title>“A Study of Learning a Merge Model for Multilingual Information Retrieval</article-title>
          .
          <source>” Proceedings of the 31st Annual International ACM SIGIR Conference</source>
          ,
          <volume>20</volume>
          -
          <issue>24</issue>
          <year>July 2008</year>
          , Singapore,
          <fpage>195</fpage>
          -
          <lpage>202</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>