<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Dreamland Fantasy Studios</title>
	<atom:link href="http://www.dfstudios.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dfstudios.co.uk</link>
	<description>The homepage of Francis G. Loch&#039;s various projects</description>
	<lastBuildDate>Sun, 29 Apr 2012 19:53:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on More Image Processing Articles Updated by Luis</title>
		<link>http://www.dfstudios.co.uk/2010/12/more-image-processing-articles-updated/#comment-22069</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Sun, 29 Apr 2012 19:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?p=869#comment-22069</guid>
		<description>Great, thanks that help me a lot, i&#039;m gonna wait for your next posts.</description>
		<content:encoded><![CDATA[<p>Great, thanks that help me a lot, i&#8217;m gonna wait for your next posts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image Processing Algorithms Part 5: Contrast Adjustment by Francis</title>
		<link>http://www.dfstudios.co.uk/articles/image-processing-algorithms-part-5/#comment-20632</link>
		<dc:creator>Francis</dc:creator>
		<pubDate>Sat, 07 Apr 2012 00:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/#comment-20632</guid>
		<description>Thanks for your question Tiffany. Yes, I probably didn’t explain that part very well as to why the range is 0 to 129.5. This range is only for the contrast correction factor and does not represent a colour value per se. I’ll explain more about this later.

To recap the formulas are:

F = 259(C + 255) / 255(259 – C) for the contrast correction factor. C is the contrast (range = -255 to 255).

and

R’ = F(R-128) + 128 for the actual contrast adjustment. R is the red colour component (range = 0 to 255).

Let’s assume that C is zero (i.e. no change in contrast). Using the first formula we work out that F is 1. Using the second equation we see that R’ is the same as R. I’ll illustrate this with some values:

R / R’
0 = 0
64 = 64
128 = 128
196 = 196
255 = 255

Let’s now assume that C is -255. F now becomes zero. The R’ values will then become:

R / R’
0 = 128
64 = 128
128 = 128
196 = 128
255 = 128

As you can see with C turned all the way down to -255 the result is a mid-level grey no matter what the R value is.

Let’s now assume that C is 255. F becomes 129.5. The R’ values will now become:

R / R’
0 = -16448
64 = -8160
128 = 128
196 = 8934
255 = 16575

And because the R’ values are outside of the acceptable range these will be truncated so in reality the values are:

R / R’
0 = 0
64 = 0
128 = 128
196 = 255
255 = 255

Now to explain the reason why the range of the contrast correction factor is 0 to 129.5. Yes it’s true that the range should be 0 to 128, but the value of 259 used in the contrast correction factor formula has been rounded for simplicity. To get a range closer to 0 to 128 you would need to use a value of 259.047619047619 instead. However, as you can see from the R’ values you get at the higher contrast levels they end up being quite extreme and end up being truncated anyway so that fact that the range is 0 to 129.5 instead of 0 to 128 is not very significant.

I hope that explains things more clearly for you. If you still have any questions then please do not hesitate to get back in touch with me.</description>
		<content:encoded><![CDATA[<p>Thanks for your question Tiffany. Yes, I probably didn’t explain that part very well as to why the range is 0 to 129.5. This range is only for the contrast correction factor and does not represent a colour value per se. I’ll explain more about this later.</p>
<p>To recap the formulas are:</p>
<p>F = 259(C + 255) / 255(259 – C) for the contrast correction factor. C is the contrast (range = -255 to 255).</p>
<p>and</p>
<p>R’ = F(R-128) + 128 for the actual contrast adjustment. R is the red colour component (range = 0 to 255).</p>
<p>Let’s assume that C is zero (i.e. no change in contrast). Using the first formula we work out that F is 1. Using the second equation we see that R’ is the same as R. I’ll illustrate this with some values:</p>
<p>R / R’<br />
0 = 0<br />
64 = 64<br />
128 = 128<br />
196 = 196<br />
255 = 255</p>
<p>Let’s now assume that C is -255. F now becomes zero. The R’ values will then become:</p>
<p>R / R’<br />
0 = 128<br />
64 = 128<br />
128 = 128<br />
196 = 128<br />
255 = 128</p>
<p>As you can see with C turned all the way down to -255 the result is a mid-level grey no matter what the R value is.</p>
<p>Let’s now assume that C is 255. F becomes 129.5. The R’ values will now become:</p>
<p>R / R’<br />
0 = -16448<br />
64 = -8160<br />
128 = 128<br />
196 = 8934<br />
255 = 16575</p>
<p>And because the R’ values are outside of the acceptable range these will be truncated so in reality the values are:</p>
<p>R / R’<br />
0 = 0<br />
64 = 0<br />
128 = 128<br />
196 = 255<br />
255 = 255</p>
<p>Now to explain the reason why the range of the contrast correction factor is 0 to 129.5. Yes it’s true that the range should be 0 to 128, but the value of 259 used in the contrast correction factor formula has been rounded for simplicity. To get a range closer to 0 to 128 you would need to use a value of 259.047619047619 instead. However, as you can see from the R’ values you get at the higher contrast levels they end up being quite extreme and end up being truncated anyway so that fact that the range is 0 to 129.5 instead of 0 to 128 is not very significant.</p>
<p>I hope that explains things more clearly for you. If you still have any questions then please do not hesitate to get back in touch with me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image Processing Algorithms Part 5: Contrast Adjustment by Tiffany</title>
		<link>http://www.dfstudios.co.uk/articles/image-processing-algorithms-part-5/#comment-20631</link>
		<dc:creator>Tiffany</dc:creator>
		<pubDate>Sat, 07 Apr 2012 00:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/#comment-20631</guid>
		<description>Hi, could you please explain, why this works (especially why the mapping to 129.5 is needed)? I see it works, but I don&#039;t understand the logic behind it. Thank you :)</description>
		<content:encoded><![CDATA[<p>Hi, could you please explain, why this works (especially why the mapping to 129.5 is needed)? I see it works, but I don&#8217;t understand the logic behind it. Thank you <img src='http://www.dfstudios.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maphilindo Martial Arts &#8211; Glossary Of Terms by Oliver Malpas</title>
		<link>http://www.dfstudios.co.uk/articles/maphilindo-martial-arts-glossary-of-terms/#comment-19156</link>
		<dc:creator>Oliver Malpas</dc:creator>
		<pubDate>Thu, 23 Feb 2012 17:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?page_id=3269#comment-19156</guid>
		<description>Hi There
An interesting glossary and good to find...
As a fellow silat player I wanted you to know that Uncle Paul De Thouars is coming to the UK on his first ever visit in May on 19th + 20th to grace us with his knowledge.
I am part of the group helping to organize this event and we welcome any and all silat players.
Please get in touch if you are interested in coming it would be good to meet fellow practitioners in the UK.
All the Best
Oliver</description>
		<content:encoded><![CDATA[<p>Hi There<br />
An interesting glossary and good to find&#8230;<br />
As a fellow silat player I wanted you to know that Uncle Paul De Thouars is coming to the UK on his first ever visit in May on 19th + 20th to grace us with his knowledge.<br />
I am part of the group helping to organize this event and we welcome any and all silat players.<br />
Please get in touch if you are interested in coming it would be good to meet fellow practitioners in the UK.<br />
All the Best<br />
Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image Processing Algorithms Part 5: Contrast Adjustment by Francis</title>
		<link>http://www.dfstudios.co.uk/articles/image-processing-algorithms-part-5/#comment-18713</link>
		<dc:creator>Francis</dc:creator>
		<pubDate>Fri, 17 Feb 2012 16:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/#comment-18713</guid>
		<description>Hi Fatima,

Because I&#039;m using a range of -255 to 255 here to adjust the contrast I have had to use this correction factor so that it will work with the second formula for the contrast adjustment. All the correction factor does is convert the range I&#039;m using to a range of 0 to 129.5. If you are using a different range, e.g. -100 to 100, then that would obviously require a different correction factor to work properly.

I&#039;ve had a look back through my notes, but I couldn&#039;t find where I originally got this from. I can&#039;t remember if I had calculated this myself or if I&#039;ve read it in a book or online.

Kind regards,

Francis</description>
		<content:encoded><![CDATA[<p>Hi Fatima,</p>
<p>Because I&#8217;m using a range of -255 to 255 here to adjust the contrast I have had to use this correction factor so that it will work with the second formula for the contrast adjustment. All the correction factor does is convert the range I&#8217;m using to a range of 0 to 129.5. If you are using a different range, e.g. -100 to 100, then that would obviously require a different correction factor to work properly.</p>
<p>I&#8217;ve had a look back through my notes, but I couldn&#8217;t find where I originally got this from. I can&#8217;t remember if I had calculated this myself or if I&#8217;ve read it in a book or online.</p>
<p>Kind regards,</p>
<p>Francis</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image Processing Algorithms Part 5: Contrast Adjustment by Fatima</title>
		<link>http://www.dfstudios.co.uk/articles/image-processing-algorithms-part-5/#comment-18637</link>
		<dc:creator>Fatima</dc:creator>
		<pubDate>Thu, 16 Feb 2012 08:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/#comment-18637</guid>
		<description>Hi, I would like to ask, where did you get the formula for contrast correction factor?any reference?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I would like to ask, where did you get the formula for contrast correction factor?any reference?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stereogram Viewer released by Colin Ord</title>
		<link>http://www.dfstudios.co.uk/2009/08/stereogram-viewer-released/#comment-31</link>
		<dc:creator>Colin Ord</dc:creator>
		<pubDate>Thu, 19 Nov 2009 14:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?p=277#comment-31</guid>
		<description>Hi Francis,

Thanks for the feedback.

I have placed another page on the site with a youtube video tutorial of the process. You&#039;ll see all the steps required in Photoshop to achieve the result.

The downloadable application works in a slighty different way from this process but the results are similar.

http://sites.google.com/site/colinord/about-the-stereogram---3d-object-viewer-project/stereogram---see-the-3d-objects-using-photoshop

Regards,
Colin</description>
		<content:encoded><![CDATA[<p>Hi Francis,</p>
<p>Thanks for the feedback.</p>
<p>I have placed another page on the site with a youtube video tutorial of the process. You&#8217;ll see all the steps required in Photoshop to achieve the result.</p>
<p>The downloadable application works in a slighty different way from this process but the results are similar.</p>
<p><a href="http://sites.google.com/site/colinord/about-the-stereogram---3d-object-viewer-project/stereogram---see-the-3d-objects-using-photoshop" rel="nofollow">http://sites.google.com/site/colinord/about-the-stereogram&#8212;3d-object-viewer-project/stereogram&#8212;see-the-3d-objects-using-photoshop</a></p>
<p>Regards,<br />
Colin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stereogram Viewer released by Francis</title>
		<link>http://www.dfstudios.co.uk/2009/08/stereogram-viewer-released/#comment-30</link>
		<dc:creator>Francis</dc:creator>
		<pubDate>Thu, 19 Nov 2009 09:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?p=277#comment-30</guid>
		<description>Hi Colin,

Interesting approach, and different from the way that I had envisaged doing it. I like the fact that the original pattern is retained.

Nice work! :)

Kind regards,

Francis</description>
		<content:encoded><![CDATA[<p>Hi Colin,</p>
<p>Interesting approach, and different from the way that I had envisaged doing it. I like the fact that the original pattern is retained.</p>
<p>Nice work! <img src='http://www.dfstudios.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Kind regards,</p>
<p>Francis</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stereogram Viewer released by Colin Ord</title>
		<link>http://www.dfstudios.co.uk/2009/08/stereogram-viewer-released/#comment-29</link>
		<dc:creator>Colin Ord</dc:creator>
		<pubDate>Wed, 18 Nov 2009 19:29:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?p=277#comment-29</guid>
		<description>Hi Francis,

The Stereogram – 3D Object Viewer application is now available to download. I will be putting a video up as well describing the process soon.

http://sites.google.com/site/colinord/stereogram-3d-object-viewer

Regards,
Colin Ord
www.colinord.com</description>
		<content:encoded><![CDATA[<p>Hi Francis,</p>
<p>The Stereogram – 3D Object Viewer application is now available to download. I will be putting a video up as well describing the process soon.</p>
<p><a href="http://sites.google.com/site/colinord/stereogram-3d-object-viewer" rel="nofollow">http://sites.google.com/site/colinord/stereogram-3d-object-viewer</a></p>
<p>Regards,<br />
Colin Ord<br />
<a href="http://www.colinord.com" rel="nofollow">http://www.colinord.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stereogram Viewer released by Colin Ord</title>
		<link>http://www.dfstudios.co.uk/2009/08/stereogram-viewer-released/#comment-28</link>
		<dc:creator>Colin Ord</dc:creator>
		<pubDate>Wed, 18 Nov 2009 13:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dfstudios.co.uk/?p=277#comment-28</guid>
		<description>Hi Francis

The Stereogram - 3D Object Viewer pages are finally up at:
http://sites.google.com/site/colinord/stereogram-3d-object-viewer

The application will be available for download soon.

Regards,
Colin Ord</description>
		<content:encoded><![CDATA[<p>Hi Francis</p>
<p>The Stereogram &#8211; 3D Object Viewer pages are finally up at:<br />
<a href="http://sites.google.com/site/colinord/stereogram-3d-object-viewer" rel="nofollow">http://sites.google.com/site/colinord/stereogram-3d-object-viewer</a></p>
<p>The application will be available for download soon.</p>
<p>Regards,<br />
Colin Ord</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  www.dfstudios.co.uk/comments/feed/ ) in 0.75522 seconds, on May 21st, 2012 at 9:50 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2012 at 10:50 pm UTC -->
