<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SemanticMetadata.net &#187; Lire</title>
	<atom:link href="http://www.semanticmetadata.net/tag/lire/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.semanticmetadata.net</link>
	<description></description>
	<lastBuildDate>Wed, 11 Jan 2012 16:35:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>LIRe presentation and poster at ACM MM 2011</title>
		<link>http://www.semanticmetadata.net/2011/11/29/lire-presentation-and-poster-at-acm-mm-2011/</link>
		<comments>http://www.semanticmetadata.net/2011/11/29/lire-presentation-and-poster-at-acm-mm-2011/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 22:18:02 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[acm multimedia]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=803</guid>
		<description><![CDATA[Just finished my presentation at ACM MM&#8217;s open source competition in 2011. Many interested researchers and developers came by to discuss ideas and developments. I&#8217;m looking forward to turning many of those idea into code For those of you interested in the poster I uploaded it here. I also uploaded the presentation to slideshare.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.slideshare.net/dermotte/content-based-image-retrieval-with-lire"><img class="size-full wp-image-817 alignright" title="lire-presentation-acmmm2011" src="http://www.semanticmetadata.net/wp-content/uploads/2011/11/lire-presentation-acmmm2011.png" alt="" width="210" height="158" /></a>Just finished my presentation at ACM MM&#8217;s open source competition in 2011. Many interested researchers and developers came by to discuss ideas and developments. I&#8217;m looking forward to turning many of those idea into code <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>For those of you interested in the poster I uploaded it <a href="http://www.itec.uni-klu.ac.at/~mlux/files/poster-mlux-acm-mm-2011.pdf">here</a>.</p>
<p>I also uploaded the presentation to <a href="http://www.slideshare.net/dermotte/content-based-image-retrieval-with-lire">slideshare</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/11/29/lire-presentation-and-poster-at-acm-mm-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching with Lire in big datasets</title>
		<link>http://www.semanticmetadata.net/2011/10/27/searching-with-lire-in-big-datasets/</link>
		<comments>http://www.semanticmetadata.net/2011/10/27/searching-with-lire-in-big-datasets/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 09:17:34 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=798</guid>
		<description><![CDATA[Having received several complaints about the slowness of Lire when searching in 100k+ documents I took my time to write a small how to to explain approaches for search in big (relatively) data sets. Lire has the ability to create indexes with lots of different features (descriptors, like RGB color histograms or CEDD). While this [...]]]></description>
			<content:encoded><![CDATA[<p>Having received several complaints about the slowness of Lire when searching in 100k+ documents I took my time to write a small how to to explain approaches for search in big (relatively) data sets.</p>
<p>Lire has the ability to create indexes with lots of different features (descriptors, like RGB color histograms or CEDD). While this opens the opportunity to flexibility at search time as we can select the feature at the time we create a query, the index tends to get bigger and bigger and searcher take longer and longer.</p>
<p>With a data set of 121,379 images the index created with the features selected for default in Lire Demo has a size of 14,3 <acronym title="Gigabyte">GB</acronym> on the disk. In contrast to that an index just storing the CEDD feature along with the image identifier has a size of 29 <acronym title="Megabyte">MB</acronym>.</p>
<p>Due to the size of the index also linear search tends to get slower. While for the index stripped down to the CEDD feature and the identifier searching takes (on a AMD Quad-Core computer with 4GB RAM and Java 1.7) roughly 0.33 seconds, searching the big index takes 7 minutes and 3 seconds.</p>
<p style="text-align: center;"><img class="aligncenter" title="charts" src="http://www.semanticmetadata.net/wiki/lib/exe/fetch.php?media=lire:search-big.png" alt="" width="451" height="135" /></p>
<p>So if you want to index and search big data sets (&gt; 100.000 images for instance) I recommend to</p>
<ul>
<li>
<div>select which features you need,</div>
</li>
<li>
<div>create the index with a minimum set of features, and</div>
</li>
<li>
<div>eventually split the index per feature and select the index on the fly instead of the feature</div>
</li>
<li>
<div>also you can load the index into RAM</div>
</li>
</ul>
<p>For more on loading the index to RAM and the option to use local features read on in the <a href="http://www.semanticmetadata.net/wiki/doku.php?id=lire:manydocs">developer wiki</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/10/27/searching-with-lire-in-big-datasets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire publication in the top 10 downloads of ACM SIGMM</title>
		<link>http://www.semanticmetadata.net/2011/10/24/lire-publication-in-the-top-10-downloads-of-acm-sigmm/</link>
		<comments>http://www.semanticmetadata.net/2011/10/24/lire-publication-in-the-top-10-downloads-of-acm-sigmm/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 12:42:48 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[happy]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[sigmm]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=793</guid>
		<description><![CDATA[As to be found in this month&#8217;s SIGMM record, which is the electronic SIGMM newsletter, a publication about Lire is in the top 10 downloads of the ACM special interest group on multimedia for September 2011. I co-authored the paper with Savvas Chatzichristofis: Mathias Lux, Savvas A. Chatzichristofis. Lire: lucene image retrieval: an extensible java [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sigmm.org/records/records1103/featured04.html#Top 10 ACM SIGMM Downloads"><img class="alignright size-thumbnail wp-image-799" title="sigmm-lire-top10" src="http://www.semanticmetadata.net/wp-content/uploads/2011/10/sigmm-lire-top10-150x150.png" alt="" width="150" height="150" /></a>As to be found in this month&#8217;s SIGMM record, which is the electronic SIGMM newsletter, a publication about Lire is in the top 10 downloads of the ACM special interest group on multimedia for September 2011.</p>
<p>I co-authored the paper with Savvas Chatzichristofis:</p>
<p>Mathias Lux, Savvas A. Chatzichristofis. <em><a href="http://dl.acm.org/citation.cfm?doid=1459359.1459577">Lire: lucene image retrieval: an extensible java CBIR library</a></em>. In ACM Multimedia 2008</p>
<p>It&#8217;s also the paper I recommend to include in references if Lire is used within a scientific publication, so my thanks also go to the authors citing and therefore pointing to our work!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/10/24/lire-publication-in-the-top-10-downloads-of-acm-sigmm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lire and Lire Demo v 0.9 released</title>
		<link>http://www.semanticmetadata.net/2011/10/20/lire-and-lire-demo-v-0-9-released/</link>
		<comments>http://www.semanticmetadata.net/2011/10/20/lire-and-lire-demo-v-0-9-released/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 11:37:23 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[LireDemo]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Retrieval]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=780</guid>
		<description><![CDATA[I just released Lire and Lire Demo in version 0.9 on sourceforge.net. Basically it&#8217;s the alpha version with additional speed and stability enhancements for bag of visual words (BoVW) indexing. While this has already been possible in earlier versions I re-furbished vocabulary creation (k-means clustering) and indexing to support up to 4 CPU cores. I [...]]]></description>
			<content:encoded><![CDATA[<p>I just released Lire and Lire Demo in version 0.9 on sourceforge.net. Basically it&#8217;s the alpha version with additional speed and stability enhancements for <em>bag of visual words (BoVW)</em> indexing. While this has already been possible in earlier versions I re-furbished vocabulary creation (k-means clustering) and indexing to support up to 4 CPU cores. I also integrated a function to add documents to BoVW indexes incrementally. So a list of major changes since Lire 0.8 includes</p>
<ul>
<li>Major speed-up due to change and re-write of indexing strategies for local features</li>
<li>Auto color correlation and color histogram features improved</li>
<li>Re-ranking filter based on global features and LSA</li>
<li>Parallel <em>bag of visual words</em> indexing and search supporting SURF and SIFT including incremental index updates (see also in the <a href="http://www.semanticmetadata.net/wiki/doku.php?id=lire:bovw">wiki</a>)</li>
<li>Added functionality to Lire Demo including support for new Lire features and a new result list view</li>
</ul>
<p>Download and try:</p>
<ul>
<li><a href="http://sourceforge.net/projects/caliph-emir/files/Lire/Lire%200.9/Lire-0.9.zip/download">Source and binaries</a> (or as <a href="http://sourceforge.net/projects/caliph-emir/files/Lire/Lire%200.9/Lire-0.9.tar.bz2/download">tar.bz2</a>)</li>
<li><a href="http://sourceforge.net/projects/caliph-emir/files/Lire/Lire%200.9/LireDemo_v0.9.zip/download">Lire Demo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/10/20/lire-and-lire-demo-v-0-9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire Demo 0.9 alpha 2 just released</title>
		<link>http://www.semanticmetadata.net/2011/08/05/lire-demo-0-9-alpha-2-just-released/</link>
		<comments>http://www.semanticmetadata.net/2011/08/05/lire-demo-0-9-alpha-2-just-released/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 10:41:46 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=786</guid>
		<description><![CDATA[Finally I found some time to go through Lire and fix several of the &#8212; for me &#8212; most annoying bugs. While this is still work in progress I have a preview with the demo uploaded to sf.net. New features are: Auto Color Correlogram and Color Histogram features improved Re-ranking based on different features supported [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.semanticmetadata.net/wp-content/uploads/2011/08/LireDemo_v0.9_a2.png"><img class="alignright size-thumbnail wp-image-789" title="LireDemo_v0.9_a2" src="http://www.semanticmetadata.net/wp-content/uploads/2011/08/LireDemo_v0.9_a2-150x150.png" alt="" width="150" height="150" /></a>Finally I found some time to go through Lire and fix several of the &#8212; for me &#8212; most annoying bugs. While this is still work in progress I have a preview with the demo uploaded to sf.net. New features are:</p>
<ul>
<li>Auto Color Correlogram and Color Histogram features improved</li>
<li>Re-ranking based on different features supported</li>
<li>Enhanced results view</li>
<li>Much faster indexing (parallel, use -server switch for your JVM)</li>
<li>Much faster search (re-write of the searhc code in Lire)</li>
<li>New developer menu for faster switching of search features</li>
<li>Re-ranking of results based on latent semantic analysis</li>
</ul>
<p>You can find the updated Lire Demo along with a windows launcher here, Mac and Linux users please run it using &#8220;java -jar &#8230; &#8221; or double click (if your windows manager supports actions like that <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><a href="https://sourceforge.net/projects/caliph-emir/files/Lire/Lire%200.9/LireDemo-v09a2.zip/download">Download Liredemo v0.9 alpha 2</a></li>
</ul>
<p>The source is &#8212; of course &#8212; GPL and available in the <a href="http://caliph-emir.svn.sourceforge.net/viewvc/caliph-emir/">SVN</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/08/05/lire-demo-0-9-alpha-2-just-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Talk at BarCamp / CreateCamp Klagenfurt</title>
		<link>http://www.semanticmetadata.net/2011/02/07/my-talk-at-barcamp-createcamp-klagenfurt/</link>
		<comments>http://www.semanticmetadata.net/2011/02/07/my-talk-at-barcamp-createcamp-klagenfurt/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 17:00:40 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[slides]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=758</guid>
		<description><![CDATA[On Saturday I gave a talk on LIRe &#38; the art of content based image retrieval at the 5th BarCamp in Klagenfurt. Although few people followed my talk we had lively and interesting discussion, especially on the application in the site politinserate.at. If you are interested, find the slides on SlideShare (in german, sorry folks).]]></description>
			<content:encoded><![CDATA[<p>On Saturday I gave a talk on LIRe &amp; the art of content based image retrieval at the <a href="http://www.barcamp.at/CreateCamp_Klagenfurt_2011">5th BarCamp in Klagenfurt</a>. Although few people followed my talk we had lively and interesting discussion, especially on the application in the site <a href="http://politinserate.at">politinserate.at</a>. If you are interested, find the slides on <a href="http://www.slideshare.net/dermotte/ohne-lire-keine-bildsuche">SlideShare</a> (in german, sorry folks).</p>
<div align="center">
<object id="__sse6820920" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mlux-barcamp-110205041330-phpapp01&amp;stripped_title=ohne-lire-keine-bildsuche&amp;userName=dermotte" /><param name="name" value="__sse6820920" /><param name="allowfullscreen" value="true" /><embed id="__sse6820920" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mlux-barcamp-110205041330-phpapp01&amp;stripped_title=ohne-lire-keine-bildsuche&amp;userName=dermotte" name="__sse6820920" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2011/02/07/my-talk-at-barcamp-createcamp-klagenfurt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual Attention in Lire</title>
		<link>http://www.semanticmetadata.net/2010/03/22/visual-attention-in-lire/</link>
		<comments>http://www.semanticmetadata.net/2010/03/22/visual-attention-in-lire/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 16:44:19 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cbir]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Lire]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=682</guid>
		<description><![CDATA[While doing my preparations for my multimedia information systems lecture I finally came around to implement the visual attention model of Stentiford myself. I just check in the sources (SVN). The algorithm gives actually really nice results compared to its actual simplicity (implementationwise). You can see an example in the following figure. On the left [...]]]></description>
			<content:encoded><![CDATA[<p>While doing my preparations for my multimedia information systems lecture I finally came around to implement the visual attention model of Stentiford myself. I just check in the sources (SVN). The algorithm gives actually really nice results compared to its actual simplicity (implementationwise). You can see an example in the following figure. On the left hand side there is the original image and on the right hand side a visualization of the attention map. The light areas (especially the white ones) are deemed centers of attention. Sky and sand are so to say just random noise (there is a lot of &#8220;random&#8221; in this approach).</p>
<p style="text-align: center;"><a href="http://www.semanticmetadata.net/wp-content/uploads/2010/03/vis-att.png"><img class="size-full wp-image-683  aligncenter" title="vis-att" src="http://www.semanticmetadata.net/wp-content/uploads/2010/03/vis-att.png" alt="" width="512" height="384" /></a></p>
<p><strong>Links</strong></p>
<ul>
<li>F. W. M. Stentiford, “<a href="http://www.ee.ucl.ac.uk/~fstentif/PCS2001.pdf">An estimator for visual attention through competitive novelty with application to image compression</a>,” Proc. Picture Coding Symposium, pp 101-104, Seoul, 24-27 April, 2001.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2010/03/22/visual-attention-in-lire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search through a million images in less than a second</title>
		<link>http://www.semanticmetadata.net/2010/03/20/search-through-a-million-images-in-less-than-a-second/</link>
		<comments>http://www.semanticmetadata.net/2010/03/20/search-through-a-million-images-in-less-than-a-second/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 09:00:02 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[invertedlist]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=679</guid>
		<description><![CDATA[We reached a milestone here! Sebastian Kielmann reported that he used LIRe to index a million images. While that&#8217;s actually no problem he further managed to search through the images in &#60; 1 second! Whoot! Sebastian used the metric index, which implements the ideas of Giuseppe Amato. The approach is easy, but works out really [...]]]></description>
			<content:encoded><![CDATA[<p>We reached a milestone here! Sebastian Kielmann <a href="http://groups.google.com/group/lire-dev/msg/7e388ee9a3e6d6f2">reported</a> that he used LIRe to index a million images. While that&#8217;s actually no problem he further managed to search through the images in &lt; 1 second! Whoot!</p>
<p>Sebastian used the metric index, which implements the ideas of <a href="http://www.nmis.isti.cnr.it/amato/">Giuseppe Amato</a>. The approach is easy, but works out really fine. Currently CEDD is the standard descriptor, but others are integrated easily.  However, using the metric index is not trivial and requires some knowledge on the process. Also the results are approximate and might differ from the results obtained by linear search.</p>
<p><strong>Links</strong></p>
<ul>
<li><a href="http://groups.google.com/group/lire-dev/browse_thread/thread/889c69028b4eb2df">Sebastian report on the 1 mio. images search </a></li>
<li><a href="http://www.nmis.isti.cnr.it/amato/">Giuseppe Amato</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2010/03/20/search-through-a-million-images-in-less-than-a-second/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LIRe development mailing list</title>
		<link>http://www.semanticmetadata.net/2010/03/19/lire-development-mailing-list/</link>
		<comments>http://www.semanticmetadata.net/2010/03/19/lire-development-mailing-list/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:17:56 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[discussion]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[mailinglist]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=677</guid>
		<description><![CDATA[Few weeks ago I was asked if there is a mailing list dedicated to LIRe and development of applications with LIRe. That was reason enough for moe to create one. The mailing list is available at Google Groups and it&#8217;s called lire-dev. Please feel free to subscribe and ask (and of course answer and discuss) [...]]]></description>
			<content:encoded><![CDATA[<p>Few weeks ago I was asked if there is a mailing list dedicated to LIRe and development of applications with LIRe. That was reason enough for moe to create one. The mailing list is available at Google Groups and it&#8217;s called <a href="http://groups.google.com/group/lire-dev">lire-dev</a>. Please feel free to subscribe and ask (and of course answer and discuss) any questions regarding LIRe.</p>
<p><strong>Links</strong></p>
<ul>
<li><a href="http://groups.google.com/group/lire-dev">LIRe Dev Google Group</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2010/03/19/lire-development-mailing-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire 0.8 released</title>
		<link>http://www.semanticmetadata.net/2010/03/11/lire-0-8-released/</link>
		<comments>http://www.semanticmetadata.net/2010/03/11/lire-0-8-released/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:15:33 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cbir]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2010/03/11/lire-0-8-released/</guid>
		<description><![CDATA[I just released LIRe v0.8. LIRe &#8211; Lucene Image Retrieval &#8211; is a Java library for easy content based image retrieval. Based on Lucene it doesn&#8217;t need a database and works reliable and rather fast. Major change in this version is the support of Lucene 3.0.1, which has a changed API and better performance on [...]]]></description>
			<content:encoded><![CDATA[<p>I just released LIRe v0.8. LIRe &#8211; Lucene Image Retrieval &#8211; is a Java library for easy content based image retrieval. Based on Lucene it doesn&#8217;t need a database and works reliable and rather fast. Major change in this version is the support of Lucene 3.0.1, which has a changed API and better performance on some OS. A critical bug was fixed in the Tamura feature implementation. It now definitely performs better <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hidden in the depths of the code there is an implementation of the approximate fast indexing approach of G. Amato. It copes with the problem of linear search and provides a method for fast approximate retrieval for huge repositories (millions?). Unfortunately I haven&#8217;t tested with millions, just with tens thousands, which proves that it works, but it doesn&#8217;t show how fast.</p>
<p><strong>Links</strong></p>
<ul>
<li><a href="https://sourceforge.net/projects/caliph-emir/files/">Download Lire &amp; Lire Demo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2010/03/11/lire-0-8-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

