<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Liquid Rescale Library - new forum posts</title>
		<link>http://liblqr.wikidot.com/forum/start</link>
		<description>Posts in forums of the site &quot;Liquid Rescale Library&quot; - an easy to use C/C++ seam carving library</description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-171159#post-541623</guid>
				<title>Re: Installed files</title>
				<link>http://liblqr.wikidot.com/forum/t-171159/installed-files#post-541623</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 21:07:43 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I agree that such a list would be useful, but it depends on the configuration options and it is not easy to create one automatically, to my knowledge (suggestions are welcome).<br /> The list you have posted only includes the header files, it misses the library binaries and some other stuff.<br /> If your configuration is reasonably standard, you could get the list of installed files using these commands:</p> <div class="code"> <pre> <code>sudo make install | tee install_output.tmp cat install_output.tmp | grep $(which install) | awk '{print $(NF)}' | sed "s/^'\(.*\)'$/\1/" &gt; installed_files.txt</code> </pre></div> <br /> You should then be able to read the list in the file <tt>installed_files.txt</tt>.<br /> If you also want to see which symbolic links are created, type <tt>cat install_output.tmp | grep "ln"</tt> and inspect the output.<br /> Then, you may remove <tt>install_output.tmp</tt>.<br /> On my Linux system these commands currently produce the following list (when I don't pass the option <tt>—enable-install-man</tt> to <tt>./configure</tt>): <div class="code"> <pre> <code>/usr/lib/liblqr-1.la /usr/lib/liblqr-1.so.0.3.1 /usr/lib/liblqr-1.la /usr/include/lqr-1/lqr.h /usr/include/lqr-1/lqr/lqr_base.h /usr/include/lqr-1/lqr/lqr_gradient_pub.h /usr/include/lqr-1/lqr/lqr_rwindow_pub.h /usr/include/lqr-1/lqr/lqr_energy_pub.h /usr/include/lqr-1/lqr/lqr_cursor_pub.h /usr/include/lqr-1/lqr/lqr_carver_pub.h /usr/include/lqr-1/lqr/lqr_carver_list_pub.h /usr/include/lqr-1/lqr/lqr_carver_bias_pub.h /usr/include/lqr-1/lqr/lqr_carver_rigmask_pub.h /usr/include/lqr-1/lqr/lqr_vmap_pub.h /usr/include/lqr-1/lqr/lqr_vmap_list_pub.h /usr/include/lqr-1/lqr/lqr_progress_pub /usr/lib/pkgconfig/lqr-1.pc</code> </pre></div> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-171159/installed-files">Installed files</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-171159#post-541555</guid>
				<title>Installed files</title>
				<link>http://liblqr.wikidot.com/forum/t-171159/installed-files#post-541555</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 19:58:55 +0000</pubDate>
				<wikidot:authorName>mph</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be helpful to have in the documentation a list of the files structure which should be installed after compiling from the source.</p> <p>I am compiling from the source on OS X and the following was installed,</p> <div class="code"> <pre> <code>/usr/include/lqr-1/lqr.h /usr/include/lqr-1/lqr/ lqr_base.h lqr_carver_bias_pub.h lqr_carver_list_pub.h lqr_carver_pub.h lqr_carver_rigmask_pub.h lqr_cursor_pub.h lqr_energy_pub.h lqr_gradient_pub.h lqr_progress_pub.h lqr_rwindow_pub.h lqr_vmap_list_pub.h lqr_vmap_pub.h</code> </pre></div> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-171159/installed-files">Installed files</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-169529#post-536374</guid>
				<title>Re: Small patch needed to compile liblqr on Mac OS: change upstream package?</title>
				<link>http://liblqr.wikidot.com/forum/t-169529/small-patch-needed-to-compile-liblqr-on-mac-os:change-upstream-package#post-536374</link>
				<description></description>
				<pubDate>Fri, 17 Jul 2009 02:56:47 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks a lot for the report and for the suggestion, in fact I was already aware of that problem: I just need to test the performance (which is the only aspect which may be affected) of the library without the inlines and if everything goes fine I will just remove them, otherwilse I'll add some special compilation rule for OSX.<br /> By the way, if you or anyone else knows the reason for the compilation failure on Mac OSX and how to prevent such problems in the future please let me know, thanks.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-169529/small-patch-needed-to-compile-liblqr-on-mac-os:change-upstream-package">Small patch needed to compile liblqr on Mac OS: change upstream package?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-169529#post-535551</guid>
				<title>Small patch needed to compile liblqr on Mac OS: change upstream package?</title>
				<link>http://liblqr.wikidot.com/forum/t-169529/small-patch-needed-to-compile-liblqr-on-mac-os:change-upstream-package#post-535551</link>
				<description></description>
				<pubDate>Thu, 16 Jul 2009 08:52:57 +0000</pubDate>
				<wikidot:authorName>Vlado Plaga</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> being a relatively new "<a href="http://digikam.org/">digiKam</a> fan and user", I'm trying to create a "<a href="http://trac.macports.org/ticket/20315">Portfile</a>" for digiKam for the MacPorts project.<br /> Now digiKam 1.0 beta 2 comes with a private version of your liblqr (version 0.4.1). This library <a href="http://trac.macports.org/ticket/19685">does not compile on Mac OS</a> without <a href="http://trac.macports.org/browser/trunk/dports/graphics/liblqr/files/patch-lqr__lqr_energy_priv.h?rev=51312">a little patch</a>.<br /> The patch is to remove the "inline" keyword in two lines. I tested that patch on Linux, and liblqr still compiles. I don't know if it affects functionality or security, though. But if you think it is ok to do so, I'd suggest you apply these changes to the next release, so that liblqr and digiKam 1.0 in the future can compile on Mac OS without any extra patches.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-169529/small-patch-needed-to-compile-liblqr-on-mac-os:change-upstream-package">Small patch needed to compile liblqr on Mac OS: change upstream package?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-155162#post-476785</guid>
				<title>New package available for v0.4.1: Slackware 12.2 i686</title>
				<link>http://liblqr.wikidot.com/forum/t-155162/new-package-available-for-v0-4-1:slackware-12-2-i686#post-476785</link>
				<description></description>
				<pubDate>Tue, 12 May 2009 09:14:11 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version <a href="http://liblqr.wikidot.com/forum/t-155108/version-0-4-1-released">0.4.1</a>. It was made on the <strong>Slackware 12.2</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-155162/new-package-available-for-v0-4-1:slackware-12-2-i686">New package available for v0.4.1: Slackware 12.2 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-155108#post-476301</guid>
				<title>Version 0.4.1 released</title>
				<link>http://liblqr.wikidot.com/forum/t-155108/version-0-4-1-released#post-476301</link>
				<description></description>
				<pubDate>Tue, 12 May 2009 00:02:04 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new version of the library, <strong>0.4.1</strong>, is now avaliable in the <a href="http://liblqr.wikidot.com/en:download-page">download page</a>.<br /> It fixes a small problem which prevented the GIMP lqr plugin v0.6 to compile with <a href="http://liblqr.wikidot.com/forum/t-154854/version-0-4-0-released">v0.4.0</a> (this is actually a “bug” in the GIMP plugin which uses an undocumented legacy macro…)<br /> It also sets correctly the required glib version in configure (2.8 instead of 2.0).</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-155108/version-0-4-1-released">Version 0.4.1 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-155002#post-475760</guid>
				<title>New package available for v0.4.0: Slackware 12.2 i686</title>
				<link>http://liblqr.wikidot.com/forum/t-155002/new-package-available-for-v0-4-0:slackware-12-2-i686#post-475760</link>
				<description></description>
				<pubDate>Mon, 11 May 2009 15:47:24 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version 0.4.0. It was made on the <strong>Slackware 12.2</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-155002/new-package-available-for-v0-4-0:slackware-12-2-i686">New package available for v0.4.0: Slackware 12.2 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-475272</guid>
				<title>Re: Access to energy pictures [edit: included since v0.4.0]</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-475272</link>
				<description></description>
				<pubDate>Mon, 11 May 2009 01:41:16 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Note: the functionality is now included in the library, but the API is different from the one sketched above.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-154854#post-475269</guid>
				<title>Version 0.4.0 released</title>
				<link>http://liblqr.wikidot.com/forum/t-154854/version-0-4-0-released#post-475269</link>
				<description></description>
				<pubDate>Mon, 11 May 2009 01:37:50 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The new version <strong>0.4.0</strong> of the library is now released.<br /> It is binary compatible with the previous version, which means that you don't need to recompile any programs which were linked against the previous versions (it implements API version 3.0.3, expressed as <em>current</em>.<em>revision</em>.<em>age</em>).<br /> Here is what's new:</p> <ul> <li>New features: <ul> <li>Support for image types (color models): GREY, GREYA, RGB, RGBA, CMY, CMYK, CMYKA and custom</li> <li>Additional builtin energy functions based on luma instead of brightness</li> <li>Support for custom energy functions</li> <li>Functions to read out the energy map</li> <li>Cancel function to interrupt computations</li> <li>Additional methods for bias and rigidity masks</li> <li>Use a single progress instead of several ones when the update is performed in steps</li> <li>Can handle input buffers non-destructively</li> </ul> </li> </ul> <ul> <li>Performace related: <ul> <li>Faster rescaling thanks to optimisations in the code</li> <li>Spare memory when not using features (e.g. the bias)</li> </ul> </li> </ul> <ul> <li>Configuration <ul> <li>The default installation directory is now /usr instead of /usr/local</li> <li>Compiling under MinGW now correctly produces a DLL with the default settings</li> <li>Now it also compiles correctly under MS Visual C++ on Windows</li> <li>All public macro names start with LQR_* (old versions are still available but can be disabled at configure time)</li> </ul> </li> </ul> <p>You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download Page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-154854/version-0-4-0-released">Version 0.4.0 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145694#post-460484</guid>
				<title>Re: Increase energy for skin tones</title>
				<link>http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones#post-460484</link>
				<description></description>
				<pubDate>Sun, 26 Apr 2009 13:17:38 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>thank ytou for spotting this stupid mistake, I will check again in the paper !</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones">Increase energy for skin tones</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-151395#post-460421</guid>
				<title>Re: A tiny patch and an invitation</title>
				<link>http://liblqr.wikidot.com/forum/t-151395/a-tiny-patch-and-an-invitation#post-460421</link>
				<description></description>
				<pubDate>Sun, 26 Apr 2009 09:48:39 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've applied the patch and I'll join you at bugs.kde.org, thanks.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-151395/a-tiny-patch-and-an-invitation">A tiny patch and an invitation</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145694#post-460419</guid>
				<title>Re: Increase energy for skin tones</title>
				<link>http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones#post-460419</link>
				<description></description>
				<pubDate>Sun, 26 Apr 2009 09:46:38 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ok, thanks. I just have a doubt about this function, because</p> <div class="code"> <pre> <code>s = r + g + b = (R + G + B) / S = S / S = 1</code> </pre></div> <br /> so s is useless if defined like this. Is this a possible mistake?<br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones">Increase energy for skin tones</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-151395#post-460141</guid>
				<title>A tiny patch and an invitation</title>
				<link>http://liblqr.wikidot.com/forum/t-151395/a-tiny-patch-and-an-invitation#post-460141</link>
				<description></description>
				<pubDate>Sat, 25 Apr 2009 21:04:31 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Gilles Caullier is asking if you could you include this small patch for the next release ?</p> <p><a href="http://websvn.kde.org/trunk/extragear/graphics/digikam/imageplugins/contentawareresizing/lqr/lqr_base.h?r1=958077&amp;r2=959015">http://websvn.kde.org/trunk/extragear/graphics/digikam/imageplugins/contentawareresizing/lqr/lqr_base.h?r1=958077&amp;r2=959015</a></p> <p>You could also join us at to follow implementation of Lqr in Digikam and discuss with us the possible features:<br /> <a href="https://bugs.kde.org/show_bug.cgi?id=149485">https://bugs.kde.org/show_bug.cgi?id=149485</a></p> <p>Thanks,</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-151395/a-tiny-patch-and-an-invitation">A tiny patch and an invitation</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-151301#post-459881</guid>
				<title>Re: How implementation works</title>
				<link>http://liblqr.wikidot.com/forum/t-151301/how-implementation-works#post-459881</link>
				<description></description>
				<pubDate>Sat, 25 Apr 2009 14:18:42 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I implemented version B, which is O(h*w*s), but I have optimised it in order to retain as much information as possible from one step to the next. As for version A, an easy way to test how it performs is to try using the "Null" gradient in the GIMP lqr plugin and using the preservation mask as a gradient function (e.g. by duplicating a layer and filtering it with some edge detection algorithm such as sobel - note thar doing it that way is still O(w*h*s) because the algorithm it is not optimised for that specific situation, but the result is the same).<br /> One could consider adding an option like "carve x seams at a time", to gain a factor x at the expense of a little accuracy, but it would need a lot of work in the core. Maybe I'll try to include this in version 0.5 or later.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-151301/how-implementation-works">How implementation works</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-151301#post-459811</guid>
				<title>How implementation works</title>
				<link>http://liblqr.wikidot.com/forum/t-151301/how-implementation-works#post-459811</link>
				<description></description>
				<pubDate>Sat, 25 Apr 2009 09:22:54 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>We have a question about your implementation, what do you implement ? I think you implement V ersion B, did you ever tried to implement Version A ? does it create too many artefacts ?<br /> Is your implementation O(h*w*s) where h= height w=widht and s= number of pixel to delete in one direction (assuming we just reduce in one direction) ? or is it O(h*w) ?</p> <p>Version A</p> <p>1- Compute energy<br /> 2- Find all paths of least energy<br /> 3- Delete the required number of paths</p> <p>Version B</p> <p>1- Compute energy<br /> 2- Find one path of least energy<br /> 3- Delete this path and update energy<br /> 4- Find another path of least energy, go to step 3</p> <p>Thanks for your help.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-151301/how-implementation-works">How implementation works</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145244#post-459803</guid>
				<title>Re: A function to stop computation</title>
				<link>http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0#post-459803</link>
				<description></description>
				<pubDate>Sat, 25 Apr 2009 09:14:49 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thank you, we tested this in Digikam, it seems to work nicely.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0">A function to stop computation [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145694#post-459801</guid>
				<title>Re: Increase energy for skin tones</title>
				<link>http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones#post-459801</link>
				<description></description>
				<pubDate>Sat, 25 Apr 2009 09:12:29 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>After looking at the literature, it seems that one can easily implement skin tone detection using this function:</p> <p>int is_skin_tone(R,G,B) {</p> <p>S = R +G+B;<br /> r=R/S;<br /> g=G/S;<br /> b=B/S;<br /> s=r+g+b;</p> <p>return( b/g &lt; 1.249 &amp;&amp;<br /> s/3r &gt; 0.696 &amp;&amp;<br /> 1/3.0-b/s &gt; 0.014 &amp;&amp;<br /> g/(3s) &lt;0.108);</p> <p>}</p> <p>We will implement it to try if it works in the Digikam content aware plugin, if it does we will let you know for a possible integration at Lqr level.</p> <p>Regards,</p> <p>Julien Narboux</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones">Increase energy for skin tones</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145695#post-458870</guid>
				<title>Re: Add option to mix content aware resizing and normal resizing</title>
				<link>http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing#post-458870</link>
				<description></description>
				<pubDate>Fri, 24 Apr 2009 06:48:59 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Ok this option to mix the two kinds of resizing has been implemented at application level in the DigiKam imageplugin for content aware resizing.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing">Add option to mix content aware resizing and normal resizing</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-451092</guid>
				<title>Re: Access to energy pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-451092</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 16:44:45 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>ok thanks !</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145244#post-451031</guid>
				<title>Re: A function to stop computation</title>
				<link>http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0#post-451031</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 15:30:18 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The previous version had a problem which should be fixed now. To the contrary of what I wrote before, however, the <tt>lqr_carver_cancel</tt> function must necessarily be called from an independent thread now, even if invoked from a signal handler, otherwise there's the risk of being stuck in a deadlock.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0">A function to stop computation [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-451027</guid>
				<title>Re: Access to energy pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-451027</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 15:23:19 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I will do that I guess if I implement the function <tt>lqr_energy_compute</tt> as sketched above, but wouldn't the preview be misleading if the energy is computed over a thumbnailed image? I think one should compute the energy over the full image and then thumbnail the result.</p> <p>I will think about a general framework for convolutions, it seems a good idea; however, it should just be a special case of a user-defined functions framework - I think I will implement that first (as soon as I can, it requires some work).</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-147470#post-451024</guid>
				<title>Re: Forward energy</title>
				<link>http://liblqr.wikidot.com/forum/t-147470/forward-energy#post-451024</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 15:14:46 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I had already implemented it once with the default gradient function XABS, but the results were unsatisfactory, and therefore I abandoned that development branch.<br /> I may try again with different energy functions, but it's not in my immediate plans.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-147470/forward-energy">Forward energy</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-147470#post-450662</guid>
				<title>Forward energy</title>
				<link>http://liblqr.wikidot.com/forum/t-147470/forward-energy#post-450662</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 06:38:16 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be nice to have "forward energy" available as described in the 2008 paper. Do you plan to implement it ?</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-147470/forward-energy">Forward energy</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-450660</guid>
				<title>Re: Access to energy pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-450660</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 06:36:40 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be also nice to have access to the Lqr energy functions. The Gui would be able to compute thumbnails of the energy pictures for quick preview before choosing the energy function.</p> <p>As far as the new energy function are concerned, maybe a convolution function would be usefull, then you could have Sobel and Prewit filters.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145244#post-450389</guid>
				<title>Re: A function to stop computation</title>
				<link>http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0#post-450389</link>
				<description></description>
				<pubDate>Thu, 16 Apr 2009 01:07:14 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have added the function you requested, the synopsis is:</p> <p><tt>LqrRetVal lqr_carver_cancel (LqrCarver * carver)</tt></p> <p>Obviously, it has to be called from a different thread than the one from which you call <tt>lqr_carver_resize</tt> (or from a signal handler). It should be thread-safe.<br /> Currently, however, there is no way to recover the LqrCarver object after you call this function (if it actually cancels an ongoing operation).<br /> You can pull form the git repo master branch and read the updated manual or the man pages. Feel free to ask if you have any troubles, or suggestions for further improvement (or if you find any bugs, of course).</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0">A function to stop computation [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-147054#post-449084</guid>
				<title>New package available for v0.3.1: Slackware 12.2 i686</title>
				<link>http://liblqr.wikidot.com/forum/t-147054/new-package-available-for-v0-3-1:slackware-12-2-i686#post-449084</link>
				<description></description>
				<pubDate>Tue, 14 Apr 2009 21:32:31 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version 0.3.1. It was made on the <strong>Slackware 12.2</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-147054/new-package-available-for-v0-3-1:slackware-12-2-i686">New package available for v0.3.1: Slackware 12.2 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-144295#post-444410</guid>
				<title>Re: Deleting a carver object</title>
				<link>http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object#post-444410</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 11:45:22 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ok, I think I made it. I have introduced a new function:</p> <p><tt>void lqr_carver_set_preserve_input_image(LqrCarver * carver)</tt></p> <p>it must be called right after the carver object creation, and it should ensure that your image data is left untouched by the lqr library (hopefully).<br /> You can pull the new version from the git repo, master branch.<br /> The manual is also updated there.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object">Deleting a carver object</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-144295#post-444361</guid>
				<title>Re: Deleting a carver object</title>
				<link>http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object#post-444361</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 09:52:48 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've been thinking a little bit more about this issue and maybe I have an idea about how the library could handle the buffer which is passed to it in a non-destructive way. I'll keep you updated.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object">Deleting a carver object</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145695#post-444355</guid>
				<title>Re: Add option to mix content aware resizing and normal resizing</title>
				<link>http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing#post-444355</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 09:44:28 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I know that photoshop does that, but I'm not really sure how that helps, actually. And yes, I'm also a bit reluctant to introduce standard scaling in the LqR library, since things could become messy then (e.g. one would have different scaling algorithms in the main application and in liquid rescaling plugins).<br /> One thing which could maybe be better IMO would be to add some option to distribute the seams more evenly in the picture (adding some kind of repulsion bias between the seams) - that would require some work (i.e. time), however.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing">Add option to mix content aware resizing and normal resizing</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145694#post-444344</guid>
				<title>Re: Increase energy for skin tones</title>
				<link>http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones#post-444344</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 09:34:36 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>As I wrote in <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures" >here</a>, one thing I plan to do in the near future is to add the possibility for library users to use arbitrary energy functions. That would already allow for maximal freedom in implementations. Adding a skin tone bias would be probably also good (for a more distant future), but I'm not sure how to define those. I'm open to suggestions about that.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones">Increase energy for skin tones</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145695#post-444203</guid>
				<title>Add option to mix content aware resizing and normal resizing</title>
				<link>http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing#post-444203</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 06:45:20 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be nice to have an option to fix a percentage to mix normal resizing and content aware resizing.<br /> For instance, if the percentage is set to 75%, and that we want to delete 100 pixels of a pictures, we would delete 25 pixels using a standard scaling algortihm and 75 pixels using content aware resizing.<br /> Of course this could be done easily in the host application (gimp, digikam…) but maybe having it in the Lqr library would factorize code between those applications. The problem is that it requires to have standard resizing algorithm in Lqr…</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145695/add-option-to-mix-content-aware-resizing-and-normal-resizing">Add option to mix content aware resizing and normal resizing</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145694#post-444198</guid>
				<title>Increase energy for skin tones</title>
				<link>http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones#post-444198</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 06:41:18 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be nice to have an option which increases energy for pixels whose color is near skin tones.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145694/increase-energy-for-skin-tones">Increase energy for skin tones</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-443671</guid>
				<title>Re: Access to energy pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-443671</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2009 18:13:49 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This was actually already planned for next version 0.4, but I am also considering to add new energy functions, or maybe some interface for user-defined energy functions, so I don't know how long this will take.<br /> I was thinking to add a function like <tt>lqr_carver_get_energy(carver, x, y)</tt>, and maybe some other function like <tt>lqr_energy_compute(image_buffer, image_type, x, y, energy_function, energy_function_data)</tt> which could be used before creating the carver; if you have other suggestions you're welcome.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145502#post-443663</guid>
				<title>Re: use /* */ for comments</title>
				<link>http://liblqr.wikidot.com/forum/t-145502/use-for-comments-edit:fixed-since-v0-4-0#post-443663</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2009 17:57:39 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have fixed this, you can pull from the git repo (branch "master" or "relase0.3").</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145502/use-for-comments-edit:fixed-since-v0-4-0">use /* */ for comments [edit: fixed since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145503#post-443295</guid>
				<title>Access to energy pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0#post-443295</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2009 13:25:09 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It would be nice to have function to access to the energy array, to allow the gui to give an idea of the way the selected energy function works.</p> <p>Thanks,</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145503/access-to-energy-pictures-edit:included-since-v0-4-0">Access to energy pictures [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145502#post-443294</guid>
				<title>use /* */ for comments</title>
				<link>http://liblqr.wikidot.com/forum/t-145502/use-for-comments-edit:fixed-since-v0-4-0#post-443294</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2009 13:23:41 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Gilles Caulier is asking to use /* … */ to comment code in pure C<br /> Ansi and not // as in C++ in Lqr to simplify integration into Digikam.</p> <p>Thanks,</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145502/use-for-comments-edit:fixed-since-v0-4-0">use /* */ for comments [edit: fixed since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145243#post-442779</guid>
				<title>Re: Artefacts using 16bits pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1#post-442779</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 22:54:17 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That bug is now fixed in the new version of the library.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24184">General / Bug reports</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1">Artefacts using 16bits pictures [fixed since v0.3.1]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145394#post-442776</guid>
				<title>Version 0.3.1 released</title>
				<link>http://liblqr.wikidot.com/forum/t-145394/version-0-3-1-released#post-442776</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 22:52:47 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new version of the library, <strong>0.3.1</strong>, is now avaliable in the <a href="http://liblqr.wikidot.com/en:download-page">download page</a>.<br /> It fixes a <a href="http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures" >serious bug</a> with 16bit images (therefore, it is actually irrelevant to GIMP users, not so for other programs such as ImageMagick and DigiKam).</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145394/version-0-3-1-released">Version 0.3.1 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145243#post-442671</guid>
				<title>Re: Artefacts using 16bits pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1#post-442671</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 20:50:55 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've been able to reproduce this bug and I'm now inspecting the code, I'll try to fix it as soon as possible, thanks for reporting.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24184">General / Bug reports</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1">Artefacts using 16bits pictures [fixed since v0.3.1]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145244#post-442593</guid>
				<title>Re: A function to stop computation</title>
				<link>http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0#post-442593</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 19:51:37 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>No, there isn't. But there will be one in next release for sure, thanks for suggesting that. I just have to figure out how to do that in the most portable way.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0">A function to stop computation [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145244#post-442373</guid>
				<title>A function to stop computation</title>
				<link>http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0#post-442373</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 16:30:16 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>We could not find a function to stop computation during the carving process ? it there a way to cancel a computation in the Lqr library ?<br /> If not, it would be nice to have one.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145244/a-function-to-stop-computation-edit:included-since-v0-4-0">A function to stop computation [edit: included since v0.4.0]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-145243#post-442372</guid>
				<title>Artefacts using 16bits pictures</title>
				<link>http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1#post-442372</link>
				<description></description>
				<pubDate>Tue, 07 Apr 2009 16:27:47 +0000</pubDate>
				<wikidot:authorName>Julien Narboux</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Gilles Caullier found a bug in Lqr when dealing with 16 bits pictures, look at this comparison:<br /> <a href="http://farm4.static.flickr.com/3416/3411750178_76585a8bd3_o.png">http://farm4.static.flickr.com/3416/3411750178_76585a8bd3_o.png</a></p> <p>Digikam use Lqr version &gt; 0.0.3 from git repository.</p> <p>Any idea ?</p> <p>Thanks.</p> <p>Julien</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24184">General / Bug reports</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-145243/artefacts-using-16bits-pictures-fixed-since-v0-3-1">Artefacts using 16bits pictures [fixed since v0.3.1]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-144295#post-439152</guid>
				<title>Re: Deleting a carver object</title>
				<link>http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object#post-439152</link>
				<description></description>
				<pubDate>Fri, 03 Apr 2009 21:04:09 +0000</pubDate>
				<wikidot:authorName>Andi</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Ok, I guessed so… :-)<br /> We will be using your library some day, right now we only have received patches for a plugin. It is not used officially. We need to fix a lot of code before it can be used :-)<br /> I will tell the other devs that the way we are doing it know is the right one.<br /> Thanks for your answer!!!</p> <p>Best,</p> <p>Andi</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object">Deleting a carver object</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-144295#post-439011</guid>
				<title>Re: Deleting a carver object</title>
				<link>http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object#post-439011</link>
				<description></description>
				<pubDate>Fri, 03 Apr 2009 19:06:08 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>in fact, the library contructor expects to receive a copy of the image, since it manipulates the buffer internally (e.g. it may actually free and reallocate memory for it many times, not only when calling the destuctor). Also, calling the carver destructor method is necessary, since there are a number of other internal structures which need to be freed. So the way in which you're doing things now is the right one.</p> <p>I know that passing a copy is not very efficient, particularly in terms of memory managment, however this has the benefit to ensure that, if there's an error at some point, the orignal image is left untouched.</p> <p>Of course, this benefit would not hold if the DImg object you're manipulating is itself a copy instead of a reference (I'd be surprised, but I don't know that). From the library point of view, the only workaround in such case would actually be to hold a copy internally, since as I wrote above it needs to be able to reallocate the internal buffer (consider for example that at each carving operation the image is actually enlarged, and therefore it requires more memory), so this solution would of course be as much inefficient as copying it beforehand. Therefore, I don't think there's a way out of this (but suggestions are welcome if you have any).</p> <p>BTW I am glad to know that you're using the library in digiKam.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object">Deleting a carver object</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-144295#post-438958</guid>
				<title>Deleting a carver object</title>
				<link>http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object#post-438958</link>
				<description></description>
				<pubDate>Fri, 03 Apr 2009 18:09:12 +0000</pubDate>
				<wikidot:authorName>Andi</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>we use the LQR in an image plugin of the digiKam image editor (well we are writing a plugin at the moment).</p> <p>The problem is that we have a crash when the plugin is finishing. This is due to the way we assign the image data to the carver. The data comes from a DImg object (digikam image object) that holds the data.<br /> We pass the pointer to the carver, but after the carver is destroyed by the appropriate function call, the DImg object crashes in the destructor because it tries to free the data (which has already been done by the carver).</p> <p>My actual question is: do we need to call this destroy method or will it be enough to just do "delete carver;" in the destructor of the plugin?<br /> If not, we need to do a deep copy of the image data first (like we do now) and provide this copy to the carver object. But this is not very efficient of course.</p> <p>Andi</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-144295/deleting-a-carver-object">Deleting a carver object</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-130757#post-386414</guid>
				<title>New package available for v0.3.0: Slackware 12.2 i686</title>
				<link>http://liblqr.wikidot.com/forum/t-130757/new-package-available-for-v0-3-0:slackware-12-2-i686#post-386414</link>
				<description></description>
				<pubDate>Mon, 16 Feb 2009 12:35:42 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version 0.3.0. It was made on the <strong>Slackware 12.2</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-130757/new-package-available-for-v0-3-0:slackware-12-2-i686">New package available for v0.3.0: Slackware 12.2 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-120254#post-377940</guid>
				<title>Re: zooming features</title>
				<link>http://liblqr.wikidot.com/forum/t-120254/zooming-features#post-377940</link>
				<description></description>
				<pubDate>Fri, 06 Feb 2009 22:17:19 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sorry, but I don't understand your idea. Could you explain it in more detail, please?</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-120254/zooming-features">zooming features</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-127066#post-377930</guid>
				<title>Version 0.3.0 released</title>
				<link>http://liblqr.wikidot.com/forum/t-127066/version-0-3-0-released#post-377930</link>
				<description></description>
				<pubDate>Fri, 06 Feb 2009 22:07:42 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The new version <strong>0.3.0</strong> of the library is now released.<br /> It implements API version <strong>2.0.2</strong> (expressed as <em>current</em>.<em>revision</em>.<em>age</em>), so it is binary compatible with the previous version.<br /> Here is what's new:</p> <ul> <li>Enlargement is not limited to 200% any more (it is automatically performed in steps<sup class="footnoteref"><a id="footnoteref-68857-1" href="javascript:;" class="footnoteref" >1</a></sup>)</li> <li>Added readout functions for the internal visibility map</li> </ul> <p>You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download Page</a>.</p> <div class="footnotes-footer"> <div class="title">Footnotes</div> <div class="footnote-footer" id="footnote-68857-1"><a href="javascript:;" >1</a>. The default enlargement step is 200%, but it may be set at will using <tt>lqr_carver_set_enl_step</tt>.</div> </div> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-127066/version-0-3-0-released">Version 0.3.0 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-120254#post-357121</guid>
				<title>zooming features</title>
				<link>http://liblqr.wikidot.com/forum/t-120254/zooming-features#post-357121</link>
				<description></description>
				<pubDate>Thu, 15 Jan 2009 09:50:50 +0000</pubDate>
				<wikidot:authorName>daniel</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>as you can scale the image without any loss of the image, then hows about adding a zoom feature that does the same thing, so that you can magnify the image without any loss of the image?</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24183">General / Feature requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-120254/zooming-features">zooming features</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-101607#post-298031</guid>
				<title>Updated Slackware 12.1 i386 package to v0.2.1</title>
				<link>http://liblqr.wikidot.com/forum/t-101607/updated-slackware-12-1-i386-package-to-v0-2-1#post-298031</link>
				<description></description>
				<pubDate>Sat, 01 Nov 2008 14:26:43 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version 0.2.1. It was made on the <strong>Slackware 12.1</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-101607/updated-slackware-12-1-i386-package-to-v0-2-1">Updated Slackware 12.1 i386 package to v0.2.1</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-101550#post-297824</guid>
				<title>Version 0.2.1 released</title>
				<link>http://liblqr.wikidot.com/forum/t-101550/version-0-2-1-released#post-297824</link>
				<description></description>
				<pubDate>Sat, 01 Nov 2008 02:54:37 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new relase of the library fixing some bugs is now available for <a href="http://liblqr.wikidot.com/en:download-page">download</a>.</p> <h2><span>Changes</span></h2> <ul> <li>Fixed a bug which could lead to crashes when using a high value for the max transversal step</li> <li>Moved private structs to private headers, removed some unnecessarily includes</li> <li>Fixes in the manual</li> </ul> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-101550/version-0-2-1-released">Version 0.2.1 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-101198#post-296470</guid>
				<title>New package available for v0.2.0: Slackware 12.1 i686</title>
				<link>http://liblqr.wikidot.com/forum/t-101198/new-package-available-for-v0-2-0:slackware-12-1-i686#post-296470</link>
				<description></description>
				<pubDate>Thu, 30 Oct 2008 16:09:21 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Slackware precompiled package was updated to version 0.2.0. It was made on the <strong>Slackware 12.1</strong> distribution, <strong>i686</strong> architecture.<br /> You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-101198/new-package-available-for-v0-2-0:slackware-12-1-i686">New package available for v0.2.0: Slackware 12.1 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-97827#post-285300</guid>
				<title>Re: Version 0.2.0 released</title>
				<link>http://liblqr.wikidot.com/forum/t-97827/version-0-2-0-released#post-285300</link>
				<description></description>
				<pubDate>Fri, 17 Oct 2008 00:16:16 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Some additional notes for package maintainers:</p> <ul> <li>In the new version of the library, the public symbols are the only ones to be exported in the binaries, as it should, while in the older version the private symbols were just excluded from the headers. This shouldn't be of any concern most of the times, as it doesn't really break ABI compatibility.</li> <li>The versioning scheme has changed: no “revision number” will be used any more for tar files, micro version will be incremented instead.</li> </ul> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-97827/version-0-2-0-released">Version 0.2.0 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-97827#post-285277</guid>
				<title>Version 0.2.0 released</title>
				<link>http://liblqr.wikidot.com/forum/t-97827/version-0-2-0-released#post-285277</link>
				<description></description>
				<pubDate>Thu, 16 Oct 2008 23:06:26 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The new version <strong>0.2.0</strong> of the library is now released.<br /> It implements API version <strong>1.0.1</strong> (expressed as <em>current</em>.<em>revision</em>.<em>age</em>), so it is binary compatible with the previous version.<br /> Here is what's new:</p> <h3><span>New fetures:</span></h3> <ul> <li>Support for 16-bit, 32-bit and 64-bit per channel images</li> <li>Rigidity masks</li> <li>Left-right/top-bottom balance</li> </ul> <h3><span>Performace related:</span></h3> <ul> <li>Improved attached visibility maps management (lower memory requirements)</li> <li>All internal buffers turned from double to float, improving both speed and memory requirements</li> </ul> <h3><span>Documentation:</span></h3> <ul> <li>Reviewed manual and completed refence</li> <li>Added man pages</li> </ul> <p>You find it in the <a href="http://liblqr.wikidot.com/en:download-page">Download Page</a>.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24181">General / News</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-97827/version-0-2-0-released">Version 0.2.0 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-84224#post-246929</guid>
				<title>Re: liblqr-1-0.1.0 &#039;s autogen.sh -- Typo and automake test</title>
				<link>http://liblqr.wikidot.com/forum/t-84224/liblqr-1-0-1-0-s-autogen-sh-typo-and-automake-test-fixed#post-246929</link>
				<description></description>
				<pubDate>Wed, 27 Aug 2008 11:24:34 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for reporting, I have fixed this, just download the new sources tarball from the Download page.<br /> Note, however, that the script autogen.sh should only be used for development, for normal use using configure &amp;&amp; make &amp;&amp; make install should be fine.<br /> Also, the x test is a standard way to check for empty variables and the way you changed it is wrong. Look at the new autogen.sh file to see how to do it properly.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24184">General / Bug reports</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-84224/liblqr-1-0-1-0-s-autogen-sh-typo-and-automake-test-fixed">liblqr-1-0.1.0 's autogen.sh -- Typo and automake test [fixed]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-84224#post-246913</guid>
				<title>liblqr-1-0.1.0 &#039;s autogen.sh -- Typo and automake test</title>
				<link>http://liblqr.wikidot.com/forum/t-84224/liblqr-1-0-1-0-s-autogen-sh-typo-and-automake-test-fixed#post-246913</link>
				<description></description>
				<pubDate>Wed, 27 Aug 2008 10:48:35 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Not sure about the bash x test, but the change makes the script succeed. Complains about "too many arguments in line 79" though.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24184">General / Bug reports</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-84224/liblqr-1-0-1-0-s-autogen-sh-typo-and-automake-test-fixed">liblqr-1-0.1.0 's autogen.sh -- Typo and automake test [fixed]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-83091#post-243896</guid>
				<title>Re: I&#039;m on Windows</title>
				<link>http://liblqr.wikidot.com/forum/t-83091/i-m-on-windows#post-243896</link>
				<description></description>
				<pubDate>Thu, 21 Aug 2008 23:15:20 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have no idea, but if you just want to use the Gimp plugin you don't need to install the library, it's embedded in the windows zip file for the plugin.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-83091/i-m-on-windows">I'm on Windows</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-83091#post-243847</guid>
				<title>I&#039;m on Windows</title>
				<link>http://liblqr.wikidot.com/forum/t-83091/i-m-on-windows#post-243847</link>
				<description></description>
				<pubDate>Thu, 21 Aug 2008 21:29:52 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>How do I install it?</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-83091/i-m-on-windows">I'm on Windows</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-68342#post-207736</guid>
				<title>Re: Install problems</title>
				<link>http://liblqr.wikidot.com/forum/t-68342/install-problems#post-207736</link>
				<description></description>
				<pubDate>Wed, 25 Jun 2008 23:47:33 +0000</pubDate>
				<wikidot:authorName>UnNeurone</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You just download the Gutsy package from the Download page and double-click on it.</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-68342/install-problems">Install problems</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liblqr.wikidot.com/forum/t-68342#post-200175</guid>
				<title>Install problems</title>
				<link>http://liblqr.wikidot.com/forum/t-68342/install-problems#post-200175</link>
				<description></description>
				<pubDate>Wed, 18 Jun 2008 14:32:09 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I have Ubuntu 7.10 and Gimp 2.4.2 how can I install the Liquid Rescale Library?</p> <br/>Forum category: <a href="http://liblqr.wikidot.com/forum/c-24182">General / Help requests</a><br/>Forum thread: <a href="http://liblqr.wikidot.com/forum/t-68342/install-problems">Install problems</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>