<?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; Software</title>
	<atom:link href="http://www.semanticmetadata.net/category/software/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>Lire 0.7 Released</title>
		<link>http://www.semanticmetadata.net/2008/10/23/lire-07-released/</link>
		<comments>http://www.semanticmetadata.net/2008/10/23/lire-07-released/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 08:27:15 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[CaliphEmir]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[LireDemo]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Retrieval]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=391</guid>
		<description><![CDATA[Lire 0.7 is a major release fixing a lot of bugs and introducing several new features including new descriptor, a simplified way to use descriptors by introducing new generic searchers and indexers as well as an generalized interface for image descriptors. There are also several improvements in indexing and search speed (especially in autocolorcorrelogram). Furthermore [...]]]></description>
			<content:encoded><![CDATA[<p>Lire 0.7 is a major release fixing a lot of bugs and introducing several new features including new descriptor, a simplified way to use descriptors by introducing new generic searchers and indexers as well as an generalized interface for image descriptors. There are also several improvements in indexing and search speed (especially in autocolorcorrelogram). Furthermore retrieval performance was optimized based on the Wang 1000 data set. If you use Lire 0.7 to update an existing version, please make sure that your indices are created newly from scratch. All new features have also found their way into LireDemo, which now also supports multi-threaded indexing.<br />
Thanks for comments, code and general comments go again to Savvas Chatzichristofis, Rodrigo Carvalho Rezende, Marko Keuschnig, Christian Penz, Oge Marques, Anna-Maria Pasterk and Christoph Kofler.</p>
<p><strong>Links:</strong></p>
<ul>
<li><a href="https://sourceforge.net/project/showfiles.php?group_id=105915&amp;package_id=178511&amp;release_id=635278">Download Lire 0.7 and/or LireDemo 0.7</a></li>
<li><a href="http://www.youtube.com/watch?v=hPpDU19UbPw">Screencast: Introduction to LireDemo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/10/23/lire-07-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CBIR for Facebook: img(Finder)</title>
		<link>http://www.semanticmetadata.net/2008/09/16/cbir-for-facebook-imgfinder/</link>
		<comments>http://www.semanticmetadata.net/2008/09/16/cbir-for-facebook-imgfinder/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:12:46 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Retrieval]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=386</guid>
		<description><![CDATA[Recently Savvas Chatzichristofis released a Facebook app based on his tool img(Rummager) to retrieve the photos of Facebook contacts based on image content. The tool &#8211; called img(Finder) &#8211; allows to connect to a Facebook account and creates an index based on the CEDD and FCTH image features. img(Finder) indexes the images of all Facebook [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.semanticmetadata.net/wp-content/uploads/2008/09/imgfinger-ss01.png"><img class="size-thumbnail wp-image-385" title="img(Finder) Screenshot" src="http://www.semanticmetadata.net/wp-content/uploads/2008/09/imgfinger-ss01-150x150.png" alt="img(Finder) Screenshot" width="150" height="150" align="right" /></a></p>
<p>Recently <a href="http://www.new.facebook.com/profile.php?id=656951763">Savvas </a><span class="caption"><a href="http://www.new.facebook.com/profile.php?id=656951763">Chatzichristofis</a> </span>released a Facebook app based on his tool img(Rummager) to retrieve the photos of Facebook contacts based on image content. The tool &#8211; called <a href="http://savvash.blogspot.com/2008/07/image-retrieval-in-facebook.html">img(Finder)</a> &#8211; allows to connect to a Facebook account and creates an index based on the CEDD and FCTH image features. img(Finder) indexes the images of all Facebook friends. Querying the index is done by sketch (painting tool is included) or by sample image. Best of all: The tool is open source <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Links</strong></p>
<ul>
<li><a href="http://savvash.blogspot.com/2008/07/image-retrieval-in-facebook.html">Download and try</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/09/16/cbir-for-facebook-imgfinder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire accepted for the Open Source Contest @ ACM MM</title>
		<link>http://www.semanticmetadata.net/2008/07/15/lire-accepted-for-the-open-source-contest-acm-mm/</link>
		<comments>http://www.semanticmetadata.net/2008/07/15/lire-accepted-for-the-open-source-contest-acm-mm/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 13:14:27 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[acm]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[OpenSource]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=372</guid>
		<description><![CDATA[Although its quite some time ago that I got the acceptance mail I forgot to blog the good news: Lire (Lucene Image Retrieval) has been acccepted to be presented at the ACM Multimedia within the Open Source Contest track. As it is a contest I assume we have chances to win something?]]></description>
			<content:encoded><![CDATA[<p>Although its quite some time ago that I got the acceptance mail I forgot to blog the good news: Lire (Lucene Image Retrieval) has been acccepted to be presented at the ACM Multimedia within the Open Source Contest track. As it is a contest I assume we have chances to win something? <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/07/15/lire-accepted-for-the-open-source-contest-acm-mm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 default page zoom missing &#8230;</title>
		<link>http://www.semanticmetadata.net/2008/06/19/firefox-3-default-page-zoom-missing/</link>
		<comments>http://www.semanticmetadata.net/2008/06/19/firefox-3-default-page-zoom-missing/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 10:05:17 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[hints]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/06/19/firefox-3-default-page-zoom-missing/</guid>
		<description><![CDATA[On my eee PC I really need a browser, which allows zooming the whole page. While using opera a lot I also like Firefox 3 a lot as it runs rather fast and consumes less memory than Firefox 2. However there is one thing, which is really annoying: Firefox 3 does not allow users to [...]]]></description>
			<content:encoded><![CDATA[<p>On my eee PC I really need a browser, which allows zooming the whole page. While using opera a lot I also like Firefox 3 a lot as it runs rather fast and consumes less memory than Firefox 2. However there is one thing, which is really annoying: Firefox 3 does not allow users to set a default zoom level to start with, which is a rather hand feature for my eee PC 701 <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>Fortunately a clever developer found the problem and prepared an add-on, which allows default zoom levels and much more: <a href="http://urandom.ca/nosquint/">No Squint</a> &#8230; thanks go to Jason Tackaberry.</p>
<p><strong>Links:</strong></p>
<ul>
<li><a href="http://urandom.ca/nosquint/">No Squint</a> &#8211; original home page</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2592">No Squint</a> &#8211; at mozilla.org</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/06/19/firefox-3-default-page-zoom-missing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LIRE v0.6 released: New Image Features</title>
		<link>http://www.semanticmetadata.net/2008/06/09/lire-v06-released-new-image-features/</link>
		<comments>http://www.semanticmetadata.net/2008/06/09/lire-v06-released-new-image-features/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 14:35:47 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[LireDemo]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/06/09/lire-v06-released-new-image-features/</guid>
		<description><![CDATA[The new release contains three additional features: (i) Tamura texture features, (ii) Color and Edge Directivity Descriptor (CEDD) and (iii) a configurable color histogram implementation. While the last one was integrated for comparison only the other two provide additional improvements, especially the CEDD feature. Furthermore a FastMap implementation was included in the release for optimization [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif'" lang="EN-US">The new release contains three additional features: (i) Tamura texture features, (ii) Color and Edge Directivity Descriptor (CEDD) and (iii) a configurable color histogram implementation. While the last one was integrated for comparison only the other two provide additional improvements, especially the CEDD feature. Furthermore a FastMap implementation was included in the release for optimization of the indexing process in a later release. Also some bugs were fixed in the MPEG-7 EdgeHistogram descriptor provided in the cbir-library jar file and in color-only search. Note that due to the increased number of features the extensive document builder, which extracts all available features, needs significantly more time for extraction than in the last release.</span></p>
<p><strong>Links:</strong></p>
<ul>
<li><a href="http://sourceforge.net/project/showfiles.php?group_id=105915&amp;package_id=178511">Download Lire &amp; LireDemo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/06/09/lire-v06-released-new-image-features/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

