<?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; Java</title>
	<atom:link href="http://www.semanticmetadata.net/tag/java/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>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 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 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>
		<item>
		<title>NetBeans Community Approves NetBeans 6.7 for Prime Time Release</title>
		<link>http://www.semanticmetadata.net/2009/06/24/netbeans-community-approves-netbeans-67-for-prime-time-release/</link>
		<comments>http://www.semanticmetadata.net/2009/06/24/netbeans-community-approves-netbeans-67-for-prime-time-release/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 08:49:32 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/?p=507</guid>
		<description><![CDATA[The NetBeans community acceptance survey has voted for thhe last NetBeans 6.7 RC to be stable enough to be shipped. While this sounds great there is one minor details I consider critical for the significance of the survey: Only 182 people responded. (re-engineneered from 144 people being 79%). If we go with common numbers in [...]]]></description>
			<content:encoded><![CDATA[<p>The NetBeans community acceptance survey has voted for thhe last NetBeans 6.7 RC to be stable enough to be shipped. While this sounds great there is one minor details I consider critical for the significance of the survey: Only 182 people responded. (re-engineneered from 144 people being 79%). If we go with common numbers in empirical research ~5 % of the population take part in survey like these and therefore I conclude that the size of the NetBeans community is around 3.600 people.</p>
<p>NetBeans is actually having quite a a hard time with Eclipse pressing from open source and Idea pressing from commercial alternatives. Also the free IDEs of Microsoft&#8217;s .NET family affect the scene. However, I still think that if NetBeans manages to advance from the &#8220;I can do all&#8221; principle to a small and lean application development environment featuring a fast and intelligent editor and a WYSIWYG gui builder there is definitely a chance.</p>
<p><strong>Links</strong></p>
<ul>
<li> <a href="http://www.netbeans.org/servlets/NewsItemView?newsItemID=1398">Announcement</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2009/06/24/netbeans-community-approves-netbeans-67-for-prime-time-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual VM is Part of Java 1.6 Update 7</title>
		<link>http://www.semanticmetadata.net/2008/07/14/visual-vm-is-part-of-java-16-update-7/</link>
		<comments>http://www.semanticmetadata.net/2008/07/14/visual-vm-is-part-of-java-16-update-7/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 12:59:41 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/07/14/visual-vm-is-part-of-java-16-update-7/</guid>
		<description><![CDATA[Java 1.6 u7 was released recently by Sun. While not bringing major changes it brought along some bug fixes and solved some security issues. However there is one main addition: The VisualVM. This is a really great developer tool: It connects to running VMs and shows &#8220;some statistics&#8221; about them. Besides memory usage and threads [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.semanticmetadata.net/wp-content/uploads/2008/07/visualvm.png" title="visualvm.png"><img src="http://www.semanticmetadata.net/wp-content/uploads/2008/07/visualvm.thumbnail.png" alt="visualvm.png" align="right" border="0" /></a>Java 1.6 u7 was released recently by Sun. While not bringing major changes it brought along some bug fixes and solved some security issues. However there is one main addition: The VisualVM. This is a really great developer tool: It connects to running VMs and shows &#8220;some statistics&#8221; about them. Besides memory usage and threads information it also allows to do some basic profiling. In my opinion Sun did a good job on including VisualVM in the package! Not that this thing is build on the NetBeans Platform <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Links:</strong></p>
<ul>
<li><a href="http://java.sun.com/javase/6/webnotes/ReleaseNotes.html">Java 1.6 u7 release notes </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/07/14/visual-vm-is-part-of-java-16-update-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Finding duplicate code &#8230;</title>
		<link>http://www.semanticmetadata.net/2008/07/02/finding-duplicate-code/</link>
		<comments>http://www.semanticmetadata.net/2008/07/02/finding-duplicate-code/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 09:58:05 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/07/02/finding-duplicate-code/</guid>
		<description><![CDATA[I recently found myself in a scenario, where I tried to figure out how implementation clusters have been implicitly created within a group of students. All of them were given a task (with 4 sub tasks) for a whole semester. Everyone was meant to do the task alone, but collaboration was allowed. However I needed [...]]]></description>
			<content:encoded><![CDATA[<p>I recently found myself in a scenario, where I tried to figure out how implementation clusters have been implicitly created within a group of students. All of them were given a task (with 4 sub tasks) for a whole semester. Everyone was meant to do the task alone, but collaboration was allowed. However I needed to know who helped whom and &#8211; of course &#8211; who helped whom with source code.</p>
<p>A colleague had a similar problem and he pointed me to <a href="http://pmd.sourceforge.net/cpd.html">PMD CPD</a> (= PMD Copy &amp; Paste Detector) . This tool works lightning fast and has a GUI <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Also its open source -&gt; respect!</p>
<p><strong>Links:</strong></p>
<ul>
<li><a href="http://pmd.sourceforge.net/cpd.html">http://pmd.sourceforge.net/cpd.html </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/07/02/finding-duplicate-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lire SVN build for Java 1.5</title>
		<link>http://www.semanticmetadata.net/2008/05/30/lire-svn-build-for-java-15/</link>
		<comments>http://www.semanticmetadata.net/2008/05/30/lire-svn-build-for-java-15/#comments</comments>
		<pubDate>Fri, 30 May 2008 12:29:04 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[CaliphEmir]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[LireDemo]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/05/30/lire-svn-build-for-java-15/</guid>
		<description><![CDATA[Due to requests I took some time and built a Java 1.5 version instead of the 1.6 versions. A simple compile with 1.5 wouldn&#8217;t help as I use the swing layout classes of NetBeans (now integrated in Java 1.6), so imports have to be re-adjusted and the library has to be added. Furthermore I created [...]]]></description>
			<content:encoded><![CDATA[<p>Due to requests I took some time and built a Java 1.5 version instead of the 1.6 versions. A simple compile with 1.5 wouldn&#8217;t help as I use the swing layout classes of NetBeans (now integrated in Java 1.6), so imports have to be re-adjusted and the library has to be added. Furthermore I created an explicit build target in Caliph to create a 1.5 version of the cbir jar file. This snapshot works fine with MacOS (as far as I&#8217;ve heard) and on Windows.</p>
<p><strong>Files:</strong></p>
<ul>
<li><a href="http://www.semanticmetadata.net/lire-files/liredemo-svn-2008-05-29-jdk1.5.tar.bz2">liredemo-svn-2008-05-29-jdk1.5.tar.bz2</a> [670k]<a href="http://www.semanticmetadata.net/lire-files/liredemo-svn-2008-05-29-jdk1.5.tar.bz2"><br />
</a></li>
<li><a href="http://www.semanticmetadata.net/lire-files/liredemo-svn-2008-05-29-jdk1.5.zip">liredemo-svn-2008-05-29-jdk1.5.zip</a> [884k]<a href="http://www.semanticmetadata.net/lire-files/liredemo-svn-2008-05-29-jdk1.5.zip"><br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/05/30/lire-svn-build-for-java-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire development: a big next step ..</title>
		<link>http://www.semanticmetadata.net/2008/05/29/lire-development-a-big-next-step/</link>
		<comments>http://www.semanticmetadata.net/2008/05/29/lire-development-a-big-next-step/#comments</comments>
		<pubDate>Thu, 29 May 2008 08:12:09 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Lire]]></category>
		<category><![CDATA[LireDemo]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[cbir]]></category>
		<category><![CDATA[features]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/05/29/lire-development-a-big-next-step/</guid>
		<description><![CDATA[While it has been quiet for some time around Lire, recently development has been pushed forward. I switched to SVN for development and integrated simple RGB color histograms as a feature for comparison with the MPEG-7 features. Savvas Chatzichristofis (or on facebook, his image search engine) contributed the CEDD feature, which works great! Marko Keuschnig [...]]]></description>
			<content:encoded><![CDATA[<p>While it has been quiet for some time around Lire, recently development has been pushed forward. I switched to SVN for development and integrated simple RGB color histograms as a feature for comparison with the MPEG-7 features. <a href="http://savvash.blogspot.com/">Savvas Chatzichristofis</a> (or <a href="http://www.facebook.com/profile.php?id=656951763">on facebook</a>, his <a href="http://orpheus.ee.duth.gr/anaktisi/">image search engine</a>) contributed the CEDD feature, which works great! Marko Keuschnig and Christian Penz contributed implementations for the Gabor texture feature and the Tamura texture features, where the latter is already in the <a href="http://caliph-emir.svn.sourceforge.net/viewvc/caliph-emir/">SVN</a>. I also integrated the new features in LireDemo. A new version &#8211; already compiled &#8211; can be downloaded here: <a href="http://www.semanticmetadata.net/wp-content/uploads/2008/05/liredemo-svn-2008-05-29-jdk16tar.bz2" title="liredemo-svn-2008-05-29-jdk16tar.bz2">liredemo-svn-2008-05-29-jdk16.tar.bz2</a> Note that Java 1.6 is required.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/05/29/lire-development-a-big-next-step/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.1 Released</title>
		<link>http://www.semanticmetadata.net/2008/04/30/netbeans-61-released/</link>
		<comments>http://www.semanticmetadata.net/2008/04/30/netbeans-61-released/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 11:51:46 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/04/30/netbeans-61-released/</guid>
		<description><![CDATA[The new NetBeans IDE 6.1 has been released 2 days ago. Changes are more incremental than fundamental, but it features now support for JavaScript and code completion for JavaDoc. Furthermore support for MySQL has been added. Release notes can be found here.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.netbeans.org/images/v6/nb-logo-frontpage.gif" align="right" height="45" width="210" />The new <a href="http://download.netbeans.org/netbeans/6.1/final/">NetBeans IDE 6.1</a> has been released 2 days ago. Changes are more incremental than fundamental, but it features now support for <a href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript" rel="wikipedia" target="_blank">JavaScript</a> and code completion for <a href="http://en.wikipedia.org/wiki/Javadoc" title="Javadoc" rel="wikipedia" target="_blank">JavaDoc</a>. Furthermore support for <a href="http://mysql.com/" title="MySQL" rel="homepage" target="_blank">MySQL</a> has been added. Release notes can be found <a href="http://www.netbeans.org/community/releases/61/relnotes.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/04/30/netbeans-61-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Games: Parallax Scrolling &amp; Sprites</title>
		<link>http://www.semanticmetadata.net/2008/04/08/computer-games-parallax-scrolling-sprites/</link>
		<comments>http://www.semanticmetadata.net/2008/04/08/computer-games-parallax-scrolling-sprites/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 12:33:16 +0000</pubDate>
		<dc:creator>Mathias Lux</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[courses]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.semanticmetadata.net/2008/04/08/computer-games-parallax-scrolling-sprites/</guid>
		<description><![CDATA[Currently I&#8217;m preparing for giving my talk next Friday in the computer games lesson on multimedia issues in games. To underline my words and slides with some code I also coded some easy little Java program visualizing sprite animation and some star field background. The coding was great fun &#8211; the third scrolling shooter I [...]]]></description>
			<content:encoded><![CDATA[<p>Currently I&#8217;m preparing for giving my talk next Friday in the computer games lesson on multimedia issues in games. To underline my words and slides with some code I also coded some easy little Java program visualizing sprite animation and some star field background. The coding was great fun &#8211; the third scrolling shooter I coded &#8230; always a pleasure <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div align="center">
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/3Xgw-qW7R7c&#038;rel=0&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3Xgw-qW7R7c&#038;rel=0&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</div>
<p>However there is one thing I found out while coding: Ready to use sprite animation image stripes are hard to get. There is a little tool called <a href="http://www.east-power-soft.de/index.php?menu=software_sprogs_sem">simple explosion maker</a>&#8221; that came handy and the <a href="http://www.flyingyogi.com/fun/spritelib.html">SpriteLib</a> of Flying Yogi is rather cool, but I miss the great deal of online creative commons content. Perhaps one could point me there <img src='http://www.semanticmetadata.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Related links: </strong></p>
<ul>
<li><a href="http://www.east-power-soft.de/index.php?menu=software_sprogs_sem">Simple explosion maker</a> &#8211; A simple tool for rendering explosions.</li>
<li><a href="http://www.flyingyogi.com/fun/spritelib.html">SpriteLib</a> &#8211; GPL-ed sprites of Flying Yogi</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticmetadata.net/2008/04/08/computer-games-parallax-scrolling-sprites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

