 <?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>Points in Focus Photography &#187; Cameras &amp; Lenses</title>
	<atom:link href="http://www.pointsinfocus.com/learning/cameras-lenses/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pointsinfocus.com</link>
	<description>Focusing on better photography</description>
	<lastBuildDate>Mon, 21 May 2012 16:26:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Canon EOS AF Adjust Frame Capture Script</title>
		<link>http://www.pointsinfocus.com/2012/01/canon-eos-af-adjust-frame-capture-script/</link>
		<comments>http://www.pointsinfocus.com/2012/01/canon-eos-af-adjust-frame-capture-script/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 01:00:53 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=7524</guid>
		<description><![CDATA[Capturing autofocus adjustment images can be a tedious process. Fortunately for Canon users, EOS utility's live view function coupled with some AutoHotKey action can automate the collection of AF test images.]]></description>
			<content:encoded><![CDATA[<p>Some time back I wrote about doing <a  title="Auto Focus Micro Adjustments Using Live View" href="http://www.pointsinfocus.com/2010/01/auto-focus-micro-adjustments-using-live-view/">AF Adjustments using Live View</a>; at least in Canon&#8217;s EOS Utility while in live view mode you can manipulate the lens&#8217;s focus position using the AF control system in 3 step sizes from the finest the camera can make to something considerably larger. The key being that an AF micro adjustment step is the same size as the smallest step the AF can be directed to make (1/8th of a depth of field).</p>
<p>At the time I wrote that article, there was also a tool available from Helicon focus that would do the same thing automatically and then use a contrast detection algorithm to determine whether the image was maximally sharp (i.e. dead on in focus). Unfortunately they seem to have removed that feature from their software.</p>
<p>Likewise, a new app has shown up on the scene <a  href="http://www.reikan.co.uk/focal/index.html">Reikan&#8217;s FoCal</a>. FoCal seems to be doing the same thing that Helicon Focus&#8217;s software did, though it seems to do it using a special target. Do note, as of the writing of this I haven&#8217;t actually tested FoCal.</p>
<p>I&#8217;m not one to get in the way of other people&#8217;s businesses, but with the economy and my business the way it is, I have more spare time than spare change; if I can work out a solution that costs me time and not money well that&#8217;s what I&#8217;m going to do. Which brings me to this post.</p>
<h2>Theory</h2>
<p>The traditional AF calibration process goes something like this:</p>
<ol>
<li>Set up target</li>
<li>Align camera</li>
<li>Manually focus to infinity</li>
<li>AF on the target take an image</li>
<li>dig through menus to get the the AF settings, change the setting slightly</li>
<li>repeat 3-5 until you&#8217;ve either covered all the necessary adjustments or until you find one that works best</li>
</ol>
<p>However, the AF micro adjusts are essentially just saying to the camera, &#8220;when you think it&#8217;s in focus, move the lens x steps more&#8221;. The whole refocus to infinity and repeat is largely a product of not being able to simply command the AF system to move in small steps from the camera, which is what the live view solution does.</p>
<p>The unassisted live view method is a slight improvement over the unassisted method, in that the live view method only requires one manual focus and AF operation, but requires you to manually advance the focus in EOS Utility (or whatever camera control software you use) and keep track of the number of times you click the button.</p>
<h2>Automating Live View Capture</h2>
<p>My fist thought was, hey I&#8217;m not a useless programmer, I can grab the SDK from Canon and just write up a nice little C# app that does all the camera control stuff for me. Then I realized that the Canon SLR SDK is written in C not C# so instead of just getting down to business, I would have to write a wrapper then write the app. Okay scratch that idea.</p>
<p>Then I remembered <a  href="http://www.autohotkey.com/">AutoHotKey</a>. AutoHotKey is a generic macro program that mimics keyboard and mouse inputs following a script. If it sounds familiar to readers of this site, it&#8217;s what I used to work around rather annoying problem I was having with my <a  title="Fixing Frozen Wacom Tablets in Windows" href="http://www.pointsinfocus.com/2010/08/fixing-frozen-wacom-tablets-in-windows/">Wacom tablet drivers crashing</a>. While AutoHotKey can&#8217;t do any form of image analysis, it could at least remove the work in capturing the images, and that&#8217;s enough for me for now.</p>
<h2>Caveats and Prerequisites</h2>
<p>There are a couple of caveats with this whole solution.</p>
<ol>
<li>It only works with Canon cameras, specifically those with Live View.</li>
<li>You must have Canon&#8217;s EOS Utility installed.</li>
<li>You need <a  href="http://www.autohotkey.com/download/">AutoHotKey_L installed</a> (tested with version 1.1.05.06).</li>
<li>You can&#8217;t do anything else while the process is running.</li>
</ol>
<p>The first 3 are pretty straight forward; number 4 is a gotcha. Because this script emulates keyboard and mouse actions, if you start using the keyboard and mouse while the script is running it won&#8217;t be able to send the right actions to the right program. I&#8217;ve tried to make it as fool proof as possible, but there&#8217;s only so much I can do with these tools. As it stands it shouldn&#8217;t take more than about 2-6 minutes depending on whether you run the fine or course capture process.</p>
<p>Also while you can&#8217;t calibrate those cameras with Live View but without AF Micro-adjusts (like the EOS 40D, or the newer Rebels) you can generate the image stack to see if they are focusing correctly.</p>
<h2>Procedure</h2>
<div class="alignright" style="width:300px">
<div class=" cbox cbox_download" >
<div class="cbox_icon"></div>
<div class="cbox_text">
<h3>Download</h3>
<p><a  href="http://static1.pointsinfocus.com/2012/01/canon-eos-af-adjust-frame-capture-script/EOS-Utility-AF-Test-Automation.zip">AF Test Image AutoHotKey script v1.0</a></p>
</div>
</div>
</div>
<p>After insuring you meet the prerequisites and having the software installed, download the Zip file from the link in the box to the right, and extract it somewhere you can get to (like your desktop). Then follow the steps for building the image stack.</p>
<ol>
<li>Connect the camera to your computer via the USB cable.</li>
<li>Setup and align your camera and autofocus target as you normally would.</li>
<li>Set the camera to manual exposure mode.</li>
<li>If testing a zoom lens, zoom to the most common focal length you use, alternatively you can repeat the procedure for various focal lengths and use the micro-adjust that best matches all the focal lengths.</li>
<li>Set the aperture to it&#8217;s widest setting (i.e. f/2.8 on an f/2.8 lens)</li>
<li>Set the ISO to 100</li>
<li>Adjust the exposure using the shutter speed so that the camera meters correctly (I usually meter at +1/3 to +2/3rds given my environment tends to be on average lighter than 18% gray.</li>
<li>Start Canon&#8217;s EOS Utility</li>
<li>Make sure that EOS Utility has brought up the remove control panel and is communicating with the camera.</li>
<li>Double click on the AF Test.ahk script you extracted from the zip file.</li>
<li>Follow the onscreen prompts from the script.</li>
<li>When everything is done, the script will automatically close the EOS Utility live view window and display a notice that capture is complete.</li>
</ol>
<p>Again, while the capture is running it&#8217;s important that you don&#8217;t try and do something else on the computer.</p>
<p>The output of the capture will be stored in the director you&#8217;ve configured EOS Utility to save images to. The first image will be the one made to set the AF system, you can delete this if you wish, it&#8217;s extraneous. The remaining 11 or 41 images are the focus stacks.</p>
<p>If you chose to use the course steps, you&#8217;ll have 11 files that correspond in order to micro adjust settings of -20, -16, -12, -8, -4, 0, 4, 8 12, 16, and 20. If you chose fine you&#8217;ll have 41 images corresponding to -20 to +20 in 1 step increments.</p>
<h2>Interpreting the Results</h2>
<p>The easiest way to interpret the results is to load the images into your favorite RAW viewer and page though the images. The one that looks most &#8220;on&#8221; will be the image that you want to make note of. You just have to count what image that is and convert that to the correct AF micro-adjust step. You can use the tables below to convert the image&#8217;s sequence number to an AF Adjust. (Note, this assumes you don&#8217;t count or deleted the first image taken.)</p>
<div class="cf">
<div class=" alignleft ccol_12" >
<h3>Fine Test Sequence</h3>
<table style="width: 256px;" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td style="text-align: center;" width="64" height="20">Image is # in sequence</td>
<td style="text-align: center;" width="64">AF Adjust</td>
<td style="text-align: center;" width="64">Image is # in sequence</td>
<td style="text-align: center;" width="64">AF Adjust</td>
</tr>
</thead>
<colgroup>
<col span="4" width="64" /> </colgroup>
<tbody>
<tr>
<td style="text-align: center;" align="right" height="20">1</td>
<td style="text-align: center;" align="right">-20</td>
<td style="text-align: center;" align="right">21</td>
<td style="text-align: center;" align="right">0</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">2</td>
<td style="text-align: center;" align="right">-19</td>
<td style="text-align: center;" align="right">22</td>
<td style="text-align: center;" align="right">1</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">3</td>
<td style="text-align: center;" align="right">-18</td>
<td style="text-align: center;" align="right">23</td>
<td style="text-align: center;" align="right">2</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">4</td>
<td style="text-align: center;" align="right">-17</td>
<td style="text-align: center;" align="right">24</td>
<td style="text-align: center;" align="right">3</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">5</td>
<td style="text-align: center;" align="right">-16</td>
<td style="text-align: center;" align="right">25</td>
<td style="text-align: center;" align="right">4</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">6</td>
<td style="text-align: center;" align="right">-15</td>
<td style="text-align: center;" align="right">26</td>
<td style="text-align: center;" align="right">5</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">7</td>
<td style="text-align: center;" align="right">-14</td>
<td style="text-align: center;" align="right">27</td>
<td style="text-align: center;" align="right">6</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">8</td>
<td style="text-align: center;" align="right">-13</td>
<td style="text-align: center;" align="right">28</td>
<td style="text-align: center;" align="right">7</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">9</td>
<td style="text-align: center;" align="right">-12</td>
<td style="text-align: center;" align="right">29</td>
<td style="text-align: center;" align="right">8</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">10</td>
<td style="text-align: center;" align="right">-11</td>
<td style="text-align: center;" align="right">30</td>
<td style="text-align: center;" align="right">9</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">11</td>
<td style="text-align: center;" align="right">-10</td>
<td style="text-align: center;" align="right">31</td>
<td style="text-align: center;" align="right">10</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">12</td>
<td style="text-align: center;" align="right">-9</td>
<td style="text-align: center;" align="right">32</td>
<td style="text-align: center;" align="right">11</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">13</td>
<td style="text-align: center;" align="right">-8</td>
<td style="text-align: center;" align="right">33</td>
<td style="text-align: center;" align="right">12</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">14</td>
<td style="text-align: center;" align="right">-7</td>
<td style="text-align: center;" align="right">34</td>
<td style="text-align: center;" align="right">13</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">15</td>
<td style="text-align: center;" align="right">-6</td>
<td style="text-align: center;" align="right">35</td>
<td style="text-align: center;" align="right">14</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">16</td>
<td style="text-align: center;" align="right">-5</td>
<td style="text-align: center;" align="right">36</td>
<td style="text-align: center;" align="right">15</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">17</td>
<td style="text-align: center;" align="right">-4</td>
<td style="text-align: center;" align="right">37</td>
<td style="text-align: center;" align="right">16</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">18</td>
<td style="text-align: center;" align="right">-3</td>
<td style="text-align: center;" align="right">38</td>
<td style="text-align: center;" align="right">17</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">19</td>
<td style="text-align: center;" align="right">-2</td>
<td style="text-align: center;" align="right">39</td>
<td style="text-align: center;" align="right">18</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">20</td>
<td style="text-align: center;" align="right">-1</td>
<td style="text-align: center;" align="right">40</td>
<td style="text-align: center;" align="right">19</td>
</tr>
<tr>
<td style="text-align: center;" height="20"></td>
<td style="text-align: center;"></td>
<td style="text-align: center;" align="right">41</td>
<td style="text-align: center;" align="right">20</td>
</tr>
</tbody>
</table>
</div>
<div class=" alignleft ccol_12" >
<h3>Coarse Test Sequence</h3>
<table style="width: 128px;" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td style="text-align: center;" width="64" height="20">Image is # in sequence</td>
<td style="text-align: center;" width="64">AF Adjust</td>
</tr>
</thead>
<colgroup>
<col span="2" width="64" /> </colgroup>
<tbody>
<tr>
<td style="text-align: center;" align="right" height="20">1</td>
<td style="text-align: center;" align="right">-20</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">2</td>
<td style="text-align: center;" align="right">-16</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">3</td>
<td style="text-align: center;" align="right">-12</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">4</td>
<td style="text-align: center;" align="right">-8</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">5</td>
<td style="text-align: center;" align="right">-4</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">6</td>
<td style="text-align: center;" align="right">0</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">7</td>
<td style="text-align: center;" align="right">4</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">8</td>
<td style="text-align: center;" align="right">8</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">9</td>
<td style="text-align: center;" align="right">12</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">10</td>
<td style="text-align: center;" align="right">16</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="20">11</td>
<td style="text-align: center;" align="right">20</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>After dialing in the AF adjust, take a few manual test images to insure that it is correct. Again, due to the way this script works, it&#8217;s possible that a command may not be relayed properly for any number of uncontrollable reasons.</p>
<p>As always, if you find a bug, please leave a comment here, or email the contact address in the script, and I&#8217;ll try and address it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2012/01/canon-eos-af-adjust-frame-capture-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Hand Holding Rule of Thumb for Digital Cameras</title>
		<link>http://www.pointsinfocus.com/2011/05/hand-holding-rule-for-digital-cameras/</link>
		<comments>http://www.pointsinfocus.com/2011/05/hand-holding-rule-for-digital-cameras/#comments</comments>
		<pubDate>Tue, 03 May 2011 01:29:05 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[camera shake]]></category>
		<category><![CDATA[crop sensor]]></category>
		<category><![CDATA[digital cameras]]></category>
		<category><![CDATA[digital photography]]></category>
		<category><![CDATA[digital photography tutorial]]></category>
		<category><![CDATA[hand holding]]></category>
		<category><![CDATA[photography rules]]></category>
		<category><![CDATA[rules of thumb]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=6196</guid>
		<description><![CDATA[If you’ve ever read any introductory material on photography, you’ve probably seen the hand holding rule of thumb. The rule of thumb suggests that to avoid camera shake, the shutter speed should be at least 1/focal length of the lens or faster. So for example, if you’re using a 100mm lens, you need a shutter [...]]]></description>
			<content:encoded><![CDATA[<p>If you’ve ever read any introductory material on photography, you’ve probably seen the hand holding rule of thumb. The rule of thumb suggests that to avoid camera shake, the shutter speed should be at least 1/focal length of the lens or faster. So for example, if you’re using a 100mm lens, you need a shutter speed of 1/100<sup>th </sup>or faster.</p>
<p>The catch, if you want to call it that, is that the rule only applies to 35mm film, and by extension full frame or FX digital. For crop cameras, the rule’s shutter speed will be too slow. Instead, you need to use the 35mm equivalent focal length. Unfortunately, that also means doing rather complicated math in your head while shooting. If you ask me, that’s not an ideal situation.</p>
<h2>Doubling the Focal Length</h2>
<p>One solution is to simply double the focal length. Doing this will result in a safe shutter speed for every major brand of SLR from Canon’s APS-H sensors at 1.3x crop to Olympus’s Micro-4/3rds sensors at 2x. It has to main advantages:</p>
<ol>
<li>It makes the math easier. Doubling a number is a lot easier than trying to multiply by 1.5 or 1.6.</li>
<li>It builds in some extra cushion for most cameras, making camera shake even less likely.</li>
</ol>
<p>On one hand, it’s safe. Since, in all cases but micro-4/3rds, the shutter speeds are higher than needed as prescribed by the rule there’s even less of a chance for camera shake to be an issue.</p>
<p>However, you’re giving up precious shutter speeds for the sake of “safety”. This is doubly the case if you know from experience you’re stable enough to shoot at or slightly below the suggested speed.</p>
<p>This brings me to when we really care about the hand holding rule of thumb. Let’s be honest, it’s not when we’re metering 1/500<sup>th</sup> with a 50mm lens. It’s those cases where we’re trying to get every bit of shutter speed in the dark and still have a sharp picture. In these situations loosing 1/3 to 2/3rds of a stop using an overly save calculation can be a problem.</p>
<p>There is a tidy solution though…</p>
<h2>Use the Camera as a Calculator</h2>
<p>Due to an amazing twist of luck, there’s a way to use the camera as a calculator and get numbers that are far more accurate without doing any math at all. The trick works because sensor sizes correspond very closely to fractional-stop exposure increments. Whether that was a consideration when the camera companies were picking sensor sizes, I don’t know, but it’s certainly very useful.</p>
<p>By dialing in exposure compensation to adjust the meter exposure, you can quickly see if the meter exposure is fast enough to meet the suggested rule of thumb.</p>
<p>Here are the adjustments:</p>
<table class="aligncenter" border="0">
<thead>
<tr>
<td>Camera / Format</td>
<td>Crop Factor</td>
<td>Adjustment</td>
</tr>
</thead>
<tbody>
<tr>
<td>Canon APS-H (i.e EOS-1D)</td>
<td>1.3x</td>
<td>1/3-stop</td>
</tr>
<tr>
<td>Canon APS-C (i.e. Rebels/60D/7D)</td>
<td>1.6x</td>
<td>2/3-stop</td>
</tr>
<tr>
<td>Nikon, Pentax, and Sony Crop bodies</td>
<td>1.5x</td>
<td>1/2-stop (or 2/3rds stop)</td>
</tr>
<tr>
<td>4/3rds and micro-4/3rds cameras</td>
<td>2x</td>
<td>1-stop</td>
</tr>
</tbody>
</table>
<p>Working this way you can quickly check when you’re in the danger zone, without spending a lot of time trying to figure out what the exact numbers are. Even better, it becomes second nature to do it in your head, once you become familiar with 1/3<sup>rd</sup> stop shutter speed steps between say 1/30<sup>th</sup> and 1/250<sup>th</sup> and you’re not memorizing anything that isn’t generally applicable anyway.</p>
<h3>Putting it into practice:</h3>
<ol>
<li>Meter the scene.</li>
<li>Dial in negative exposure compensation from the list above.</li>
<li>Read the shutter speed listed:
<ol>
<li>If the shutter speed is faster than the focal length, you’re good.</li>
<li>If not you’re in shaky image country.</li>
</ol>
</li>
</ol>
<p>That’s it, no math, no multiplying, and no memorizing equivalent focal lengths.</p>
<p>For example, suppose you’re using an EOS-1D and have a 85mm lens on it. Looking though the viewfinder and you see the metered shutter speed is 1/100<sup>th</sup>. One click of negative exposure compensation and the camera meters 1/80<sup>th </sup>now. 1/80<sup>th</sup> is right on the line and I know from experience not quite enough for me to be comfortable assuming the image will be shake free.</p>
<p>As another example, suppose you’re using a 7D with a 24mm lens and the meter is showing a 1/40<sup>th</sup> shutter speed. Since it’s an APS-C (1.5/1.6 crop) camera, dial in -2/3rds or 2 clicks on the rear dial. The meter will show 1/25<sup>th</sup>, which larger than 24, so you’re good shake wise, if only just.</p>
<p>The nicest part of this technique to me, though, is that it doesn’t require doing mental math or trying to memorize something that isn’t generally applicable (i.e. 35mm equivalent focal lengths). Shutter speeds are something that you either can see in the viewfinder, or will eventually memorize simply though experience using and seeing them. Once you’re familiar with the shutter speed steps, it’s possible to check yourself without even adjusting the camera’s settings and do so intuitively.</p>
<p>Finally, this technique is applicable as long as you can translate a crop factor into fractional stops. For example, if you ever find yourself shooting medium format, you can take the rule with you, using +2/3rds for 645-format (~1.6x larger frame than 35mm/FX digital) to the same effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2011/05/hand-holding-rule-for-digital-cameras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dealing With Dust: Cleaning Your Gear</title>
		<link>http://www.pointsinfocus.com/2011/02/dealing-with-dust-cleaning-your-gear/</link>
		<comments>http://www.pointsinfocus.com/2011/02/dealing-with-dust-cleaning-your-gear/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 22:00:05 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=1068</guid>
		<description><![CDATA[We&#8217;ve all had to deal with it, dust spots in images. The more stopped down the lens is and uniform the scene is in texture the more of a problem it is. The way I see it, dealing with dust is a three-part process. Cleaning the camera and sensor, minimizing the dust that can get [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all had to deal with it, dust spots in images. The more stopped down the lens is and uniform the scene is in texture the more of a problem it is. The way I see it, dealing with dust is a three-part process. Cleaning the camera and sensor, minimizing the dust that can get into your gear, and finally, dealing with the dust spots that do show up in post processing.</p>
<h2>Cleaning your Gear</h2>
<p>This is a bit of a both sides of the equation thing, some of it is related to dust and some of it is related to maintaining the optimal functionality of your gear. I clean my gear every time I get back from the field. If you don&#8217;t currently clean your gear and want to know how, Moose Peterson has a very solid 4-part video guide at the top of <a  href="http://www.moosenewsblog.com/moose-video-guide/" target="_blank">his video archive page</a>. It&#8217;s well worth the watch.</p>
<p>That said, there are a couple of things I want to call out as being important and a couple of additions I&#8217;d like to make.</p>
<h3>Using a Cotton Swab to Clean the Mirror Box</h3>
<p>Moose suggests using a Q-tip to remove fine metal shavings and dirt from the lens mount and mirror box. I had never thought of doing this, and I really like the idea. However I&#8217;m not sure if a cotton-swab is the best solution, though I don&#8217;t know anything better. I&#8217;ve found that it&#8217;s not hard to get fibers snagged on something and pulled from the cotton. Fibers, that in turn have to be cleaned out carefully with tweezers one at a time.</p>
<p>Also, keep in mind that many digital bodies now have tacky pads in the mirror box to catch and retain dust and you don&#8217;t want to go rolling a q-tip though one of those-though you shouldn&#8217;t be putting a q-tip that far into the mirror box.</p>
<h3>Clean the Body and Lens Caps</h3>
<p>I wash my body and sometimes lens caps—yes, with soap and water—depending on how dusty they are. Since Canon doesn&#8217;t make, to my knowledge anyway, metal body caps at all and the plastic ones will collect dust in hard to reach crevices it&#8217;s the easiest way to get the dust out of them. Just make sure they dry thoroughly before putting them back on the camera.</p>
<p>Also, don’t forget to clean the lens mount on the lens. A little rubbing alcohol on a cotton swap here will turn up all kinds of crud that can get into the mirror box eventually.</p>
<h3>Wipe down Your Gear When You&#8217;re Done</h3>
<p>Not sensor dust related but I just wanted to re-emphasize the importance of this especially when shooting in hostile environments. And just an added note, when I get back from somewhere like the beach I will clean the front filters with lens cleaner to insure there isn&#8217;t any salt residue left on the glass even if they appear clean.</p>
<p>This is doubly important when shooting in environments that are aggressive to camera gear and the coatings used on lenses. The sooner you do this the better as well.</p>
<p>While you’re cleaning your gear in general, don’t forget everything else, especially if you have a good quality tripod. In a harsh wet environment, aluminum tripod legs (and the aluminum in Gitzo leg locks) can corrode and seize, freezing the legs in whatever position they were left.</p>
<h2>Cleaning Your Sensor</h2>
<p>If there isn’t a way to start a debate, this is probably it. Yes, cameras are precise instruments and the last thing you want to do is damage the sensor, god only know how much you’d end up paying to have that repaired.</p>
<p>The official line is that it’s safe to blow the sensor clean with something like a <a  href="http://www.amazon.com/dp/B000L9OIQC/?tag=poiinfoc-20">Rocket Blower</a>, if that doesn’t remove the dust you’re supposed to send the camera to the manufacturer and have them clean the sensor. In practice, the camera isn’t nearly as fragile as it sounds and there are several approaches to cleaning the sensor.</p>
<p>There are 3 major methods, blowing, brushing, and wiping, loosely named based on how they work.</p>
<h3>Blowing away the Dust</h3>
<p>Blowing is the simplest, safest and often least effective. You will need a proper blower, canned “air” dusters can and likely will leave a residue on your sensor that will require a more thorough cleaning to remove. I use a medium Rocket Blower, the small works well enough if you need to pack it in your bag for the road. Visible Dust, the makers of the Arctic Butterfly, makes a “<a  href="http://www.amazon.com/dp/B001R2W47M/?tag=poiinfoc-20">Zeeion blower</a>” that they claim is even better because it statically charges the air and filters it before it blows it in your camera.</p>
<p>Blowing will only remove dry loose dust particles, not sticky or oily ones. The unfortunate, reality of modern self-cleaning sensors though, is that the camera can already deal with this kind of dust quite well on its own, and overall blowing your sensor clean isn’t going to do much. However, it’s still a good idea to blow the sensor clean before you go into one of the more aggressive steps, there’s just no sense having any more dust there than necessary.</p>
<h3>Brushing away the Dust</h3>
<p>The second method of dealing with dust is brushing. This typically involves using a soft brush of sort, gently dragged across the sensor’s surface, to lift away the dust particles. The most well-known of the sensor cleaning brushes is the <a  href="http://www.amazon.com/dp/B000T8YG2Q/?tag=poiinfoc-20">Arctic Butterfly</a> by Visible Dust. There are also some “riskier” DiY solutions that use thoroughly cleaned artists’ paintbrushes or makeup brushes.</p>
<p>Brushing is the second most aggressive cleaning method, it can deal with sticky dust that blowing can’t, but cannot deal with oily residues. Like wiping, there is a level of risk in putting anything inside the mirror box and touching the sensor.</p>
<h3>Wiping away the Dust</h3>
<p>Better known as wet cleaning, this is the most aggressive and best cleaning solution. It will deal with all forms of dust, as well as any oily residues on the sensor’s surface. It’s also arguable the most controversial and most commercialized. There is a huge verity of products available for this, from reusable systems that you have to assemble at cleaning time to disposable one use pre-wetted pads.</p>
<p>I use a system from copper hill images; it uses readily available Pec*Pads and Eclypse E2 cleaning solution with a custom “spatula.” In the intervening years Photographic Solutions, the makers of Pec*Pads, have introduced their own <a  href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb_sb_noss%26y%3D0%26field-keywords%3DSensor%2520Swab%26url%3Dsearch-alias%253Daps&#038;tag=poiinfoc-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957">disposable sensor cleaning solutions</a>, though they are less hassle to setup, they tend to be somewhat more expensive on a per use basis.</p>
<h3>General Sensor Cleaning Tips</h3>
<p>Regardless of cleaning method and especially with the brush and wet methods where a physical instrument must be placed inside the mirror box, having stable camera power is of the up most importance. I strongly recommend using a fully charged battery (or multiple if you have a battery grip), instead of an AC power adapter, to insure that there is no power interruptions while you’re cleaning.</p>
<p>It’s also a good idea to work in a dust free area. Right, dust free, who am I kidding.</p>
<p>Actually, there are a few ways you can deal with dust in the air. One is to clean your camera in the bathroom after running the shower on hot for a few minutes and letting the room cool a bit. The condensing humidity will trap the dust in the air, at least temporarily. Barring that, if you have a fan in your room; turn it off and let the air settle before you start cleaning your gear.</p>
<p>In either case, it’s also useful to work quickly and keep the camera’s mirror box covered as much as possible.</p>
<p>For example, my cleaning procedure works much like this. I start by putting the camera in manual cleaning mode, then holding it lens mount down, and blowing out the mirror box. I then turn the camera off, and put the body cap on it before returning it to my desk while I assemble the swab. Once the swab is assembled, I put a few drops of eclipse on the swab and I’ll again put the camera in cleaning mode, then place it lens mount up on my desk. By the time I have the camera in cleaning mode, the swab is just moist enough to be ready, so I can pull the body cap off and clean the sensor. When I’m done cleaning the sensor, I immediately reattach the body cap, then go about turning off the cleaning mode.</p>
<h2>Minimizing Points of Entry</h2>
<blockquote class="pull alignright"><p>Use whether sealed lenses and don&#8217;t change them in dusty locations, barring that change lenses sparingly and quickly and while shielding the camera from the wind.</p></blockquote>
<p>Minimize the number of ways foreign particles can enter the camera body when you&#8217;re in the field. Not all sensor dust is due to material from inside the camera migrating to the sensor, there is still an environmental component that&#8217;s more of an issue in some environments than in others. Places like beaches or sandy areas are a good example; a little wind and there&#8217;s a lot of very fine particulate matter flying around almost constantly, couple that with the salt spray in air that tends to leave a residue on everything exposed to it, and you have a recipe for a dirty sensor.</p>
<p>The best way deal with these environments is by using weather-sealed lenses and not changing them at all in that environment.</p>
<p>Barring that, the next best thing is to keep the number of lens changes down to as few times as possible and as quickly as possible.</p>
<p>When all else fails and you have to change lenses in windy sandy adverse environments, try to form a shield against the wind by standing with your back to the wind. Then work quickly and close to your body and try to shield your gear with your hands and body as much as possible instead of out at arm’s length on your tripod or something. This is also a place where being able to change lenses with practiced ease is a good skill to have.</p>
<h2>Dealing with Dust in Post</h2>
<p>Dealing with dust in post shouldn&#8217;t be hard, it&#8217;s most readily visible in uniformly colored areas, and that makes it easy to clone out. In fact it&#8217;s very easy if you use the manufactures&#8217; software (like Canon&#8217;s Digital Photo Professional or Nikon&#8217;s Capture NX) there is often a way to capture a dust deletion image in the field while you&#8217;re shooting and have the software apply it automatically when you process the image.</p>
<p>Using 3rd party image editors makes things a little more complicated, but many of them make the process streamlined enough that it still can be quite fast.</p>
<h3>Tricks for Dealing with Dust in Lightroom</h3>
<p>I use Adobe’s Photoshop Lightroom, and I’ve found a few handy tricks to dealing with dust.</p>
<h4>Use Home and Page Down to Scan the Image</h4>
<p>The first trick is to insure you cover the image at 100% magnification without missing any spots. Lightroom provides a simple mechanism to do this. In develop after you’ve zoomed into 100% magnification, press the “Home” key to move the view to the top-left corner. From here you can press the “page-down” key and the view will advance down the image to the bottom. When you reach the bottom of the image, pressing “page-down” again, will shift the view to the top and far enough right to align with the first pass you just made. By repeatedly pressing “page-down”, you can cover an entire image from top-left, to bottom-right without missing any of the image.</p>
<h4>Sync Dust removal between Images</h4>
<p>Dust spots are static, so they won’t move between images. Which means, that you can de-spot one image, and sync those fixes to neighboring images using Lightroom’s ability to sync development settings. This makes it much easier to deal with spots in a number of similar images where you can be sure the background won’t change drastically.</p>
<h4>Edit and Process only the Necessary Images</h4>
<p>This should be somewhat obvious, but instead of trying to remove dust spots from all your images, edit down your images to the ones you really want before you start processing them. With fewer images, you can spend more time cleaning them or verifying that dust really is a problem.</p>
<h4>Shortcut Keys</h4>
<p>You can jump directly to the spot removal tool in Lightroom by pressing the ‘Q’ key on the keyboard while in any library module or in develop.</p>
<p>Dust will likely always be a problem with digital photography and dealing with it isn’t just about cloning out spots in post-production. Keeping your camera clean and well maintained, especially the lens mount and mirror box, means you have somewhat less to worry about, but you’re not out of the woods.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2011/02/dealing-with-dust-cleaning-your-gear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guide to Bracketing on Canon DSLRs</title>
		<link>http://www.pointsinfocus.com/2010/12/everything-you-never-wanted-to-know-about-bracketing-on-canon-dslrs/</link>
		<comments>http://www.pointsinfocus.com/2010/12/everything-you-never-wanted-to-know-about-bracketing-on-canon-dslrs/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 22:11:32 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[auto exposure bracketing]]></category>
		<category><![CDATA[Canon]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=5420</guid>
		<description><![CDATA[For most Canon cameras, exposure bracketing is straightforward to setup and use, there are few options, and changing them has little impact on the results. That changes with Canon’s 1-series DSLRs starting with the Mark 3s and newer. The following is a, as complete as possible, list of settings and how they affect auto exposure [...]]]></description>
			<content:encoded><![CDATA[<p>For most Canon cameras, exposure bracketing is straightforward to setup and use, there are few options, and changing them has little impact on the results. That changes with Canon’s 1-series DSLRs starting with the Mark 3s and newer. The following is a, as complete as possible, list of settings and how they affect auto exposure bracketing on Canon DSLRs.</p>
<h2>Bracketing on most Canon DSLRs</h2>
<p>For non-EOS-1 bodies, this means all the Rebels (###D and 1000D), the mid-range (i.e. 30D, 40D, &amp; 50D), and even the high-end 5D and 5D Mark 2 bracketing is limited to 3 frames, +/- 1/3 to 2 stops, in 1/3<sup>rd</sup> or 1/2-stop increments. The 60D and 7D, maintain the same 3 frames, but increase the range to +/- 3 stops in 1/3<sup>rd</sup> or 1/2-stop increments.</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="167" valign="top"><strong>Camera</strong></td>
<td width="166" valign="top"><strong>N. Frames</strong></td>
<td width="153" valign="top"><strong>Steps (in   stops)</strong></td>
<td width="153" valign="top"><strong>Range (in   stops)</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="167" valign="top">10D, 20D, 30D, 40D, 50D</td>
<td width="166" valign="top">3</td>
<td width="153" valign="top">1/3, 1/2</td>
<td width="153" valign="top">1/3 – 2</td>
</tr>
<tr>
<td width="167" valign="top">60D, 7D</td>
<td width="166" valign="top">3</td>
<td width="153" valign="top">1/3, 1/2</td>
<td width="153" valign="top">1/3 – 3</td>
</tr>
<tr>
<td width="167" valign="top">5D, 5D Mark 2</td>
<td width="166" valign="top">3</td>
<td width="153" valign="top">1/3, 1/2</td>
<td width="153" valign="top">1/3 – 2</td>
</tr>
</tbody>
</table>
<p>The camera will automatically control either shutter speed or aperture depending on mode.</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="319" valign="top"><strong>Mode</strong></td>
<td width="319" valign="top"><strong>Adjusted</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="319" valign="top">Manual (M)</td>
<td width="319" valign="top">Shutter Speed</td>
</tr>
<tr>
<td width="319" valign="top">Aperture Priority AE (Av)</td>
<td width="319" valign="top">Shutter Speed</td>
</tr>
<tr>
<td width="319" valign="top">Shutter Priority AE (Tv)</td>
<td width="319" valign="top">Aperture</td>
</tr>
<tr>
<td width="319" valign="top">Program AE (P)</td>
<td width="319" valign="top">Shutter Speed</td>
</tr>
</tbody>
</table>
<h3>Bracketing Order</h3>
<p>The bracketing order can be changed from “0, -, +” to “-, 0, +”, however, because brackets are symmetrical, other than lining up your images in order of increasing brightness there’s little need to change the setting. Changing the bracketing order is done the custom function listed in the table below.</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="319" valign="top"><strong>Camera Model</strong></td>
<td width="319" valign="top"><strong>Custom Function</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="319" valign="top">10D, 20D, 30D</td>
<td width="319" valign="top">
<pre>C. Fn-09</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">40D, 50D, 60D</td>
<td width="319" valign="top">
<pre>C. Fn. I-5</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">7D</td>
<td width="319" valign="top">
<pre>C. Fn. I-5</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">5D</td>
<td width="319" valign="top">
<pre>C. Fn-09</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">5D Mark 2</td>
<td width="319" valign="top">
<pre>C. Fn. I-5</pre>
</td>
</tr>
</tbody>
</table>
<h3>Bracketing Step Size</h3>
<p>Finally choosing 1/3 or 1/2 stop increments is done though the same custom function as changing metering increments.</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="319" valign="top"><strong>Camera Model</strong></td>
<td width="319" valign="top"><strong>Custom Function</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="319" valign="top">Rebel XT (350D), Rebel XTi (400D)</td>
<td width="319" valign="top">
<pre>C. Fn-6</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">Rebel T1i (450D), Rebel T2i (500D)</td>
<td width="319" valign="top">
<pre>C. Fn-1</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">10D, 20D, 30D</td>
<td width="319" valign="top">
<pre>C. Fn-06</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">40D, 50D, 60D</td>
<td width="319" valign="top">
<pre>C. Fn. I-1</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">5D</td>
<td width="319" valign="top">
<pre>C. Fn-6</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">5D Mark 2</td>
<td width="319" valign="top">
<pre>C. Fn. I-1</pre>
</td>
</tr>
<tr>
<td width="319" valign="top">7D</td>
<td width="319" valign="top">
<pre>C. Fn. I-1</pre>
</td>
</tr>
</tbody>
</table>
<h2>Bracketing on EOS-1 Series, Prior to the Mark 3</h2>
<p>Prior to the Mark 3s, the EOS-1D and EOS-1Ds cameras could do <ins datetime="2011-04-16T15:48:50">2, 3, 5, and 7</ins> frame brackets, with 1/3- or 1/2-stop increments from 1/3 to 3 stops from the center exposure. <ins datetime="2011-04-16T15:49:58">The number of bracketed exposures is controlled though <strong>personal function 08</strong>. However, this can not be set though the camera interface; the camera must be connected to a computer running Canon&#8217;s EOS utility software.</ins> They could also bracket using the ISO in 1-stop increments, a feature that’s since been removed. Bracketing order could be changed much the same way as in the 30D or 5D, by changing the setting in <strong>C.Fn-9</strong>.</p>
<p>Like the non EOS-1 bodies, the step size is set by changing <strong>C.Fn-6</strong>. However, due to a limitation in the camera’s ISO controls, setting the camera to 1/2 stop exposure increments, would disable bracketing using ISO.</p>
<p>Bracketing controls works much the same as it does in non 1-series bodies. That is, in aperture priority, the shutter speed is adjusted; in shutter priority, the aperture is adjusted; and in manual, the shutter speed is adjusted.</p>
<h2>Bracketing on the EOS-1 Series, Mark 3 and Newer</h2>
<p>With the introduction of the 3<sup>rd</sup> generation of EOS-1 digital bodies, Canon has expanded the range of bracketing options and given the user even more control over what the camera can do. Canon’s EOS-1D and 1Ds mark 3 and 1D mark 4 bodies can make 2, 3, 5, and 7 frame brackets, with 1/3 or 1/2-stop steps, with 1/3 to 3 stops between brackets. In sort, you can do a bracket as small as 2 frames 1/3<sup>rd</sup> stop apart, or as wide as 7 frames over a total range of 18 stops.</p>
<h3>Choosing the Size of the Bracket</h3>
<p>Setting the number of images made in the bracket is done though <strong>C. Fn I-6: Number of Bracketed Shots</strong>. You’re options in order are 3, 2, 5 and 7 shots.</p>
<h3>Bracket Ordering</h3>
<p>At first glance, it would seem like the order of bracketed exposures didn’t matter anymore than it does on any other body. That would be correct, if there wasn’t a 2-frame bracketing mode.</p>
<p>The order of bracketed shots is set using <strong>C. Fn I-5: Bracketing Sequence</strong>. The available options are 1: “0,-,+”, 2: “-,0,+”, and 3: “+,0,-”. When the camera is set to either the first or second options a 2 frame bracket will be made with the non-biased “0” frame and a negatively biased “-” frame. When C.Fn. I-6 is set to option 3, the second frame in the 2-frame bracket is biased positively.</p>
<p>This is an important distinction, because it allows you to retain the full +/- 3 stop exposure compensation range when shooting brackets that would be past either end of the scale.</p>
<h3>Affected Exposure Control</h3>
<p>By default, this is similar to non EOS-1 bodies.</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="319" valign="top"><strong>Mode</strong></td>
<td width="319" valign="top"><strong>Adjusted</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="319" valign="top">Manual (M)</td>
<td width="319" valign="top">Shutter Speed (default)</td>
</tr>
<tr>
<td width="319" valign="top">Aperture Priority AE (Av)</td>
<td width="319" valign="top">Shutter Speed</td>
</tr>
<tr>
<td width="319" valign="top">Shutter Priority AE (Tv)</td>
<td width="319" valign="top">Aperture</td>
</tr>
<tr>
<td width="319" valign="top">Program AE (P)</td>
<td width="319" valign="top">Shutter Speed</td>
</tr>
</tbody>
</table>
<p>The difference is that in manual mode what the bracket changes can be changed from shutter speed to aperture. This is controlled, rather unintuitively, with <strong>C. Fn. IV-5: Tv/Av Setting for Manual Exposure</strong>. When C.Fn IV-5 is set to the first setting, the camera will change the shutter speed when bracketing in manual mode, when its set to the second setting, the camera will change the aperture. An easy way to remember this is that when in manual mode, the camera adjusts the same thing the main (front) control dial adjusts.</p>
<h3>Important Mark 3+ Custom Functions</h3>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="211" valign="top"><strong>Custom Function</strong></td>
<td width="427" valign="top"><strong>Function</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2" width="211" valign="top">C.Fn I-1: Exposure Level Increments</td>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Primary</em>: Change the size   of the exposure level and exposure compensation steps.<br />
<em><br />
</em></td>
</tr>
<tr>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Secondary</em>: Changes the size   of the steps used by the auto exposure bracket. (0 and 1 result in 1/3<sup>rd</sup> stop bracket steps, 2 produces 1/2-stop steps)</td>
</tr>
<tr>
<td rowspan="2" width="211" valign="top">C.Fn I-5: Bracketing Sequence</td>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Primarily</em>: Controls the   order in which bracketed exposures are made.<br />
<em><br />
</em></td>
</tr>
<tr>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Secondary</em>: Controls   whether the 2-frame bracket will be positively- or negatively-biased.</td>
</tr>
<tr>
<td width="211" valign="top">C.Fn I-6: Number of Bracketed Shots</td>
<td width="427" valign="top"><em>Primary</em>: Sets the number   of shots in the bracket set.</td>
</tr>
<tr>
<td rowspan="2" width="211" valign="top">C.Fn IV-5: Tv/Av Setting for Manual Exposure</td>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Primary</em>: Change the way   you control the camera in manual exposure.<br />
<em><br />
</em></td>
</tr>
<tr>
<td style="text-indent: -70px; padding-left: 75px;" width="427" valign="top"><em>Secondary</em>: Sets whether the camera changes the aperture or  shutter speed when bracketing in manual mode. Use setting 0 for shutter  speed, and use setting 1 for aperture.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/12/everything-you-never-wanted-to-know-about-bracketing-on-canon-dslrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast Lenses vs. Stabilized Lenses</title>
		<link>http://www.pointsinfocus.com/2010/09/fast-lenses-vs-stabilized-lenses/</link>
		<comments>http://www.pointsinfocus.com/2010/09/fast-lenses-vs-stabilized-lenses/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 15:05:22 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[aperture]]></category>
		<category><![CDATA[cameras]]></category>
		<category><![CDATA[image stabilization]]></category>
		<category><![CDATA[Lenses]]></category>
		<category><![CDATA[sake reduction]]></category>
		<category><![CDATA[vibration reduction]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=4849</guid>
		<description><![CDATA[Image stabilization is becoming an increasingly common feature in digital cameras and lenses. The question is, is a faster lens better than a slower one that has image stabilization? The answer isn't always a simple yes, read more to find out why.]]></description>
			<content:encoded><![CDATA[<p>Just about every camera company has added image stabilization to their line of cameras or lenses. The implementations vary, but the objective is the same; make images sharper when taken at lower shutter speeds by minimizing the effects of camera movement.</p>
<p>The question is, is a faster lens better, or worse than a slower lens with some form of stabilization.</p>
<h2>Motion: The enemy of sharpness</h2>
<p>There are two kinds of motion that can blur images, camera motion, and subject motion. Camera motion is the little bit of rocking and shaking the photographer makes when standing still, the vibration induced by the mirror flipping up, or any number of small movements and vibrations that happen to the camera while a photo is being made. While the movement may be imperceptibly small to us, to the camera and lens these movements are actually quite large.</p>
<p>Subject motion, on the other hand, is just that, your subject moving around on you. You could also lump into subject motion the relative motion of the subject and photographer if the photographer is moving. While not exactly subject motion, its effects are the same.</p>
<h2>Stabilizing Things</h2>
<p>Of all the motions that can affect the sharpness of an image, the image stabilizer can only affect one of them, camera shake. Specifically it can only reduce vibrations in the plane of the sensor (i.e. up-down and left-right) and in some cases tilt. Moreover, the stabilization system can only correct relatively small motions.</p>
<p>In short, the stabilizer can reduce some camera shake and that’s it.</p>
<h2>Aperture: More Light, More Speed</h2>
<p>The aperture on the other hand controls how much light can reach the sensor. In this case, we’re looking at maximum apertures, since they let the most light in. More light, in a similarly light environment, means exposing the film for less time (i.e. increasing the shutter speed).</p>
<p>The practical result of shorter exposures is less motion of any kind.</p>
<h2>Looking towards the Future</h2>
<p>Ultimately,<strong> </strong>the question might become a moot point.</p>
<p>Digital camera sensors and noise reduction algorithms are improving every year. Today’s ISO 12800 is as good as yesterday’s ISO 1600. Further, as the technology is refined, the number of lenses that can have stabilization systems is increasing; and that’s not even considering the cameras with in-body stabilizers that stabilize all lenses. It’s certainly possible that in a few years, the only choice will be between a fast stabilized-lens and a slow stabilized-lens.</p>
<h2>In Short: Which way to go</h2>
<p>Image stabilization is not always a substitute for faster shutter speeds, especially when the subject is moving. While an image stabilizer will help improve sharpness of static objects at all shutter speeds, at least when hand holding, it won’t stop a moving subject at all.</p>
<p>The million-dollar question is do you shoot moving subjects in low light or not?</p>
<p>If you do, you’ll probably be better served with a faster lens, even if it’s not stabilized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/09/fast-lenses-vs-stabilized-lenses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon’s Safety Shift</title>
		<link>http://www.pointsinfocus.com/2010/04/canon%e2%80%99s-safety-shift/</link>
		<comments>http://www.pointsinfocus.com/2010/04/canon%e2%80%99s-safety-shift/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:47:07 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[cameras]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[technique]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=4080</guid>
		<description><![CDATA[Safety shift has existed in some form as far back as the original EOS 1D. Its options have changed slightly over the years and though varying cameras but the intent is the same. The function, unfortunately, is somewhat cryptically labeled, potentially leading many to skip over enabling what can be a rather useful function. Safety [...]]]></description>
			<content:encoded><![CDATA[<p>Safety shift has existed in some form as far back as the original EOS 1D. Its options have changed slightly over the years and though varying cameras but the intent is the same. The function, unfortunately, is somewhat cryptically labeled, potentially leading many to skip over enabling what can be a rather useful function.</p>
<h2>Safety Shift Mode 1: Tv/Av</h2>
<p>Safety shift mode one applies to all Canon cameras except the D30, D60, and Rebels (EOS ##0D and EOS 1000D). The manual describes it as follows.</p>
<blockquote><p>1: Enable (Tv/Av)</p>
<p>This works in shutter-priority AE (Tv) and aperture-priority AE (Av) modes. If the subject’s brightness changes suddenly and the current shutter or aperture becomes unsuitable, the shutter or aperture is shifted automatically to obtain a suitable exposure.</p></blockquote>
<p>From reading that, one might assume that enabling safety shift isn’t necessarily a good idea. The implication is that even in one of the priority modes the camera will be constantly overriding your shutter and aperture settings as the &#8220;exposure changes&#8221;.</p>
<p>The reality is that Safety Shift only kicks in when your metered exposure exceeds the limits of one of the camera’s ranges.</p>
<p>In Av mode, Tv/Av Safety Shift works something like this; suppose the camera is set to f/2.8 and the metered shutter speed is 1/16000<sup>th </sup>of a second, 1 stop faster than the maximum shutter speed the camera can support. Without safety shift, the image will be 1 stop over exposed. With safety shift, the camera will automatically stop the lens down 1 stop so you’re shooting at 1/8000<sup>th</sup> at f/4 and the image will be properly exposed. On the flip side, an exposure of 60s @ f/22 would prompt the camera to open the aperture 1 stop to get an exposure of 30s @ f/16.</p>
<p>In Tv mode, the Tv/Av Safety Shift behaves the same way only changing the shutter speed instead. For a required exposure of f/1.4 at 1/250<sup>th</sup> with a lens that can only open up to f/2.8, Safety Shift would cause the camera to drop the shutter speed to 1/60<sup>th</sup> to insure a proper exposure. Alternatively, an exposure that required an aperture smaller than the lens could produce would result in shortening the shutter speed until the exposure was correct.</p>
<h3>What exposure is shifted?</h3>
<p>Safety shift uses the meter to determine the exposure. However, exposure compensation settings are factored into the exposure before the safety shift is applied. Therefore, if one is shooting a high-key scene with +2 stops of exposure compensation set, the compensated exposure will be the base exposure and the Safety Shifted exposure will be equivalent to the compensated exposure.</p>
<h2>Safety Shift Mode 2: ISO</h2>
<p>Canon’s EOS 1 series bodies since the Mark 3s have a second Safety Shift mode to adjust the ISO instead of the aperture or shutter speed. The manual entry for mode 2 reads:</p>
<blockquote><p>2: Enable (ISO Speed)</p>
<p>This works in Program AE, shutter-priority AE, and aperture priority AE modes. When the subject’s brightness changes erratically and the correct auto exposure cannot be obtained, the camera will change the ISO speed within 100-3200 automatically to obtain the correct exposure.</p></blockquote>
<p>Like mode 1, mode 2 only alters the exposure once the shutter speed or aperture has reached the limits of what the lens or camera can do. In addition, like Tv/Av mode 2 factors in the exposure compensation that is set when correcting the exposure.</p>
<h3>Faking Auto ISO on a EOS-1D(s) Mk. 3 or newer</h3>
<p>Auto ISO is either handy or completely useless, depending on the implementation and photographer. Nikon’s implementation is arguably one of the best. In starts with allowing the photographer to set their preferred ISO, from there the photographer can configure a minimum shutter speed and a maximum ISO for the camera to use.</p>
<p>In other words, a camera could be configured so that the shutter speed won&#8217;t drop below 1/60<sup>th</sup> and the ISO won’t be set above ISO 800.</p>
<p>If you aren’t providing at least that much, the implementation borders on worthless.</p>
<p>Fortunately, the EOS 1 series bodies don’t provide an auto ISO implementation as such at all. However, mode 2 (ISO) Safety Shift combined with the built in shutter speed limitations (Custom function I-12) can be used to mimic Nikon’s auto ISO to some degree; you can’t register a lowest shutter speed faster than 1/60<sup>th</sup> and you can’t stop the camera for shifting outside of the registered ISO limits (Custom Function 1-3).</p>
<p>However, even with those limitations this “fake” implementation of auto ISO provides more control than Canon’s auto ISO as implemented on any other Canon camera.</p>
<p>In my experience, Safety Shift, especially the ISO shift on 3<sup>rd</sup> generation EOS-1 bodies, provides the latitude to be able to quickly capture a fleeting moment without having to worrying about overexposing an image because the camera couldn’t reach a high enough shutter speed or narrow enough aperture. Moreover, coupled with the ability to limit the lowest shutter speed to something approaching a generally hand-holdable speed (1/60<sup>th</sup>) you have a rather good, if slightly more complex to configure auto-ISO system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/04/canon%e2%80%99s-safety-shift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Depth of Field: Hyperfocal Distances for some Wide Angle Lenses</title>
		<link>http://www.pointsinfocus.com/2010/04/depth-of-field-hyperfocal-distances-for-some-wide-angle-lenses/</link>
		<comments>http://www.pointsinfocus.com/2010/04/depth-of-field-hyperfocal-distances-for-some-wide-angle-lenses/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 14:00:05 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=4012</guid>
		<description><![CDATA[The following table provides a list of approximate hyperfocal distances for a verity of common landscape focal lengths on APS-C and full frame cameras. Hyperfocal Distances for Common Wide angle Focal Lengths (in feet) Focal length F/8 F/11 F/16 Full Frame APS-C/DX Full Frame APS-C/DX Full Frame APS-C/DX 10mm 2.2 1.6 1.1 12mm 3.2 2.2 [...]]]></description>
			<content:encoded><![CDATA[<p>The following table provides a list of approximate hyperfocal distances for a verity of common landscape focal lengths on APS-C and full frame cameras.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr align="center">
<td colspan="7" width="627" valign="top">Hyperfocal Distances for Common Wide   angle Focal Lengths (in feet)</td>
</tr>
<tr align="center">
<td rowspan="2" width="91" valign="top">Focal length</td>
<td colspan="2" width="179" valign="top">F/8</td>
<td colspan="2" width="179" valign="top">F/11</td>
<td colspan="2" width="179" valign="top">F/16</td>
</tr>
<tr align="center">
<td width="89" valign="top">Full Frame</td>
<td width="89" valign="top">APS-C/DX</td>
<td width="89" valign="top">Full Frame</td>
<td width="89" valign="top">APS-C/DX</td>
<td width="89" valign="top">Full Frame</td>
<td width="89" valign="top">APS-C/DX</td>
</tr>
<tr align="center">
<td width="91" valign="top">10mm</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">2.2</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">1.6</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">1.1</td>
</tr>
<tr align="center">
<td width="91" valign="top">12mm</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">3.2</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">2.2</td>
<td width="89" valign="top"></td>
<td width="89" valign="top">1.6</td>
</tr>
<tr align="center">
<td width="91" valign="top">16mm</td>
<td width="89" valign="top">3.6</td>
<td width="89" valign="top">5.6</td>
<td width="89" valign="top">2.5</td>
<td width="89" valign="top">4</td>
<td width="89" valign="top">1.8</td>
<td width="89" valign="top">2.8</td>
</tr>
<tr align="center">
<td width="91" valign="top">24mm</td>
<td width="89" valign="top">8</td>
<td width="89" valign="top">12.5</td>
<td width="89" valign="top">5.7</td>
<td width="89" valign="top">8.87</td>
<td width="89" valign="top">4</td>
<td width="89" valign="top">6.30</td>
</tr>
<tr align="center">
<td width="91" valign="top">28mm</td>
<td width="89" valign="top">10.8</td>
<td width="89" valign="top">17.0</td>
<td width="89" valign="top">7.67</td>
<td width="89" valign="top">12.1</td>
<td width="89" valign="top">5.45</td>
<td width="89" valign="top">8.6</td>
</tr>
<tr align="center">
<td width="91" valign="top">35mm</td>
<td width="89" valign="top">16.9</td>
<td width="89" valign="top">26.6</td>
<td width="89" valign="top">12.0</td>
<td width="89" valign="top">18.8</td>
<td width="89" valign="top">8.5</td>
<td width="89" valign="top">13.3</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/04/depth-of-field-hyperfocal-distances-for-some-wide-angle-lenses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lenses: Magnifications</title>
		<link>http://www.pointsinfocus.com/2010/01/lenses-magnifications/</link>
		<comments>http://www.pointsinfocus.com/2010/01/lenses-magnifications/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 08:00:05 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=3615</guid>
		<description><![CDATA[There are two ways the magnification of the lens is generally described. The ratio form gives the ratio of image size to object size. In other words, if a lens has a maximum magnification of 1:4, then at that magnification the object will be 4 times larger than the image. The decimal form is simply [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways the magnification of the lens is generally described.</p>
<ul>
<li>The ratio form gives the ratio of image size to object size. In other words, if a lens has a maximum magnification of 1:4, then at that magnification the object will be 4 times larger than the image.</li>
<li>The decimal form is simply the decimal representation of that ratio. For example, a 1:4 magnification can also be expressed as 0.25x.</li>
</ul>
<p>To convert from the ratio form to the decimal form, divide the object size by the image size.</p>
<p>Some Common Magnifications</p>
<ul>
<li>5:1 (5x) – The highest magnification of the Canon MP-E 65mm f/2.8</li>
<li>1:1 (1x) – True macro magnification, the image is the same size as the subject was. Most true macro lens support this magnification.</li>
<li>1:2 (0.5x) – Half macro magnification, the Canon EF 50mm f/2.5 compact macro and the Zeiss Macro Planar lenses reach this.</li>
<li>1:4 (0.25x) – “Consumer Macro”, most lenses that aren’t dedicated macro lenses but are branded as macro reach this magnification.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/01/lenses-magnifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Focus Micro Adjustments Using Live View</title>
		<link>http://www.pointsinfocus.com/2010/01/auto-focus-micro-adjustments-using-live-view/</link>
		<comments>http://www.pointsinfocus.com/2010/01/auto-focus-micro-adjustments-using-live-view/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 22:04:00 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[AF micro adjutments]]></category>
		<category><![CDATA[autofocus]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[live view]]></category>
		<category><![CDATA[SLRs]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=3444</guid>
		<description><![CDATA[The traditional process of AF adjustment is complicated and requires skill and guesswork in interpreting the results. However, there is an alternative method that works just as well and requires a whole lot less guess work, so long as your camera has live view.]]></description>
			<content:encoded><![CDATA[<p>I’ve previously written about my frustrations with calibrating my camera’s auto focus system. Frankly, I hate it. It’s finicky, time consuming and requires a great deal of precision to setup and execute properly. In addition, most targets aren’t large enough to test at actual working distances so there isn’t any guarantee that the results are going to be good for normal photography anyway. The worst part is that the whole system is largely open to interpretation.</p>
<p>However, there has been a solution all along. It just seems that nobody had really thought of it until recently. The solution comes from the ability to remotely control a tethered camera’s focus while looking at the live view image on the computer. Even better, there is now software that automates the process and that software is the AF Calibrator feature in Helicon Remote, part of Helicon Soft’s Helicaon Focus.</p>
<p>What Helicon Remote’s AF Calibrator does is use the camera’s built and its own contrast detection algorithms to determine what the sharpest focus setting is without having the user guess. Even better, it does this automatically and the result isn’t a hard to interpret picture but an actual setting for your camera. Further, because this approach doesn’t require reading a ruler off towards the edge of the frame, precise alignment and target design is much less important and setup is a snap.</p>
<h3>A Quick Review of Traditional Method and its Problems</h3>
<p>Let’s, quickly look at what you need to perform AF calibrations the old way.</p>
<ol>
<li>Place your camera on a tripod and the test target on a flat surface.</li>
<li>Carefully align the camera and target.</li>
<li>Focus the lens to infinity and then let the camera autofocus on the target and take an exposure</li>
<li>Change the AF Microadjust setting and repeat step 3.</li>
<li>After all, of the focus step images have been made load them into an image-processing program and evaluate which one places the focus in the right place.</li>
</ol>
<p>It doesn’t take doing this more than once to realize that it’s a pain and quite problematic if not done extremely carefully. For starters, the target, scale and film plane must be aligned with a high level of precision. This is necessary since the scale is shifted away from the target.</p>
<p>Further, the target can’t be anything that’s handy; it must be specially designed strictly for focus testing. It also has to have specific design features, like a high-contrast focus point sounded by no other detail.</p>
<p>On top of that, very few AF calibration targets are suitable for use at normal working distances. Canon, for example, recommends that all AF tests be done at 50x the lens’s focal length. If you’re testing a 70mm lens, that works out to 12 feet. A 200mm lens requires more than 32 feet between the camera and target.</p>
<p>Finally, you must manually step though each setting (for most cameras that’s 40 images from -20 to +20) manually refocusing the camera to infinity between each shot and letting the AF system refocus.</p>
<div id="attachment_3453" class="wp-caption aligncenter" style="width: 490px"><a  href="http://www.pointsinfocus.com/wp-content/uploads/2010/01/18/a-better-way-for-auto-focus-micro-adjustments/20100118-3530025.jpg" rel="lightbox[3444]"><img class="size-medium wp-image-3453" title="Read What?" src="http://www.pointsinfocus.com/wp-content/uploads/2010/01/18/a-better-way-for-auto-focus-micro-adjustments/20100118-3530025-480x320.jpg" alt="" width="480" height="320" /></a>
<p class="wp-caption-text">At 15&#39; with a 70mm lens (even on a 1.3 crop body) this test chart is almost completely useless. Not only isn&#39;t there enough room insure that the camera will lock on the target bar, but the scale is smaller than an f/2.8 lens&#39;s depth of field.</p>
</div>
<p>All told setting up and shooting an AF test, using a paper target can take a couple of hours or more for a single lens. Even commercial solutions designed for focus testing only improves upon that slightly. Moreover, the results are dependent on the photographer’s ability to interpret what he’s looking at accurately.</p>
<h3>The Live-view Method</h3>
<p>Almost all of the problems with the traditional technique can be solved quite easily if we can insure that the focus point and measurement point are the same. Unfortunately, doing this precludes easy interpretation of the target by the photographer. Fortunately, this type of measurement is something that can be done readily by a computer. In fact, it’s how contrast detection auto focus systems, like those in point and shoot cameras, work. Additionally, since the focus settings on many cameras can be controlled remotely when they are tethered to a computer, the whole process can be automated in software.</p>
<p>In the broad strokes, for “live view” focus testing you:</p>
<ol>
<li>Place the camera on a tripod and align the camera and target. The two planes should be close to parallel but ultimate precision isn’t necessary.</li>
<li>Using the center AF point, focus on the target by half pressing the shutter release.</li>
<li>Connect the camera to your computer and fire up your remote control software.</li>
<li>Using the smallest AF shift amount move the focus forward and backward while keeping track of how many times you click the button in either direction.</li>
<li>Observe the sharpness of the image each time you change the focus. The number of button clicks that made the sharpest image will be the value you enter into the camera’s AF adjustment setting.</li>
</ol>
<p>This works well for a number of reasons. First, since this method focuses and measures at the same point, any errors induced by misalignment are negligible at best. Even better, there is no guesswork involved in coming up what adjustment to use. This is because the smallest step that the camera can shift focus is the same size as an AF micro adjustment step. Finally, since there is no need for a specialized target, the procedure can be done at normal working distances where it will better reflect the real world.</p>
<p>The only hurdle is judging the sharpest image, and this is where the computer takes over. Helicon Software’s Helicon Remote presents us with, as far as I can tell the first solution to computer aided AF calibration.</p>
<h3>Live View Focus Testing in Helicon Remote</h3>
<p>As I’ve said, Helicon Remote simplifies the process of Focus Calibration significantly since it eliminates the need to determine which image is the sharpest.</p>
<p>Setup for focus testing is as follows.</p>
<ol>
<li>Attach your target on a vertical surface like a wall or door. In this case the target only needs to be a high-contrast dot or line, in fact the less there is for the computer to process the better.</li>
<li>Make sure the target is well lit with continuous lights and the more light the better. Since this system uses live view and doesn’t actually take photographs, a flash won’t work. Also, the more light available the less noise there will be and this in turn will makes test more accurate.</li>
<li>Place the camera on a tripod approximately 50 times the focal length away from the target. I use the focal length (in mm) divided by 5 or 6—whichever is easier to do in my head—in feet since it’s easy and close enough.</li>
<li>Align the camera and target. I do this by leveling the camera with a hot-shoe level then adjusting the height of the tripod so that the lens and target are vertically aligned. Finally insure that the camera is roughly straight out from the target (having wood or tile floors with the joint lines running perpendicular to the wall is handy for this, otherwise eyeballing it will get you close enough).</li>
<li>Hook the camera’s USB connection up to a USB cable (but don’t plug the other end into your computer). What you want to avoid is plugging in a cable at the camera during the test.</li>
<li>Focus the lens to infinity and half-press the shutter release to allow the AF system to lock on to the target, make sure the AF lock indicator has come on.</li>
<li>Start Helicon Remote and plug the USB cable into your computer.</li>
<li>In Helicon Remote, click the AF Calibrator button on the toolbar along the top.</li>
<li>Follow the steps in the AF Calibrator dialog.</li>
</ol>
<h3>Conclusions</h3>
<p>I’m much happier with this method for AF adjustments than I have been with any other method I’ve tried so far. However, I haven’t yet used it enough to really gain an unshakable confidence with it. In the tests I’ve done so far, the results from Helicon Remote coincide fairly well with what I’ve found from other methods.</p>
<p>The biggest benefit here is the speed and ease of interpretation. With the old way, it would take me up to 30 minutes or more to insure the test was. Even with my best testing procedure, it still took quite a bit of time to insure everything was aligned properly. With this method, I can have the target and camera setup, aligned and ready to test in about 5 minutes. After that, the tests take about 30 seconds per run. In the time it took to get good results out of the old method, I can now triple check a lens at all major focal lengths.</p>
<p>Additionally, the Helicon Remote AF test goes far beyond what can be set in camera, +/- 60 points versus +/- 20 points for almost all cameras, so it can be used to determine if a new lens is out of spec.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2010/01/auto-focus-micro-adjustments-using-live-view/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A Brief History of Focusing: Measuring Distance without a Ruler</title>
		<link>http://www.pointsinfocus.com/2009/08/a-brief-history-of-focusing-finding-range-without-a-ruler/</link>
		<comments>http://www.pointsinfocus.com/2009/08/a-brief-history-of-focusing-finding-range-without-a-ruler/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:17:03 +0000</pubDate>
		<dc:creator>V. J. Franke</dc:creator>
				<category><![CDATA[Cameras & Lenses]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[focusing]]></category>
		<category><![CDATA[rangefinder]]></category>
		<category><![CDATA[rangefinder camera]]></category>

		<guid isPermaLink="false">http://www.pointsinfocus.com/?p=1917</guid>
		<description><![CDATA[Focusing is something most photographers take for granted, however it's not always been that easy. See how it's possible to find out how far something is without a ruler and how range finder cameras took advantage of that to make focusing possible without looking at the projected image.]]></description>
			<content:encoded><![CDATA[<p>Last time we looked at focusing using a ground glass and the problems it presents as frame sizes and view finders get smaller. This time we&#8217;ll look at how to find the distance to something with out leaving the camera or using a ruler.</p>
<h3>Finding the Range</h3>
<p>What&#8217;s needed is  a way to measure the distance to the subject with enough accuracy to allow for correct focusing. A tape measure would do, but probably isn&#8217;t going to work well for photography. Even if it did work, in many ways, it would only be marginally better than guessing with out a guide. Just imaging asking the important public figure you&#8217;ve been hired to photograph to hold one end of the tape measure while you setup the camera.</p>
<p>There is, however, another way to measure the distance to an object with out physically extending a measuring stick to the object. This works because of the trigonometric relationship between angles and the lengths of the sides of a triangle. It doesn&#8217;t take long to realize that using trigonometery as a base, the distance to the subject could be computer with out ever leaving the camera.</p>
<div id="attachment_1882" class="wp-caption aligncenter" style="width: 660px"><img class="size-large wp-image-1882" title="Rifle Scope Range Finder" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/rscope-1-650x94.png" alt="Rifle Scope Range Finder" width="650" height="94" />
<p class="wp-caption-text">Figure 2: Overview of the formed to determine the range to the subject when using a rifle scope to calculate range.</p>
</div>
<p><span id="more-1917"></span></p>
<div class="alignright" style="width: 275px;">
<div id="attachment_1883" class="wp-caption aligncenter" style="width: 260px"><a  href="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/rscope-2.png" rel="lightbox[1917]"><img class="size-thumbnail wp-image-1883 " title="Rifle Scope Ranging, 2" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/rscope-2-250x191.png" alt="Rifle Scope Ranging, 2" width="250" height="191" /></a>
<p class="wp-caption-text">Figure 3: Measuring the angle by reading the scale in the scope.</p>
</div>
<div id="attachment_1905" class="wp-caption aligncenter" style="width: 168px"><img class="size-full wp-image-1905 " title="equation" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/equation.gif" alt="Figure" width="158" height="69" />
<p class="wp-caption-text">Figure 4: The equation for ranging. (d = distance to subject, s = subject size, α = angle)</p>
</div>
</div>
<p>To make this trigonometric solution work you do need to know one thing ahead of time, the size of the subject. In addition to that you need a way to measure the angle of the subject and a formula to convert that into a distance. One approach, and what&#8217;s used in long distance rifle shooting, is to use a scale in an viewfinder or scope to measure the angle the subject covers from your position. The scale is marked at positions that correspond to  known angles. Commonly, at least in rifle scopes, these marks are made in milliradians (mils) or minutes of angle (MOA).</p>
<p>If the hypothetical reticle in figure 3 is marked using milliradians then the subject covers an angle of 4 mils<a  href="#bhl-1-footnote-1"><sup>1</sup></a> and the subject is known to be 6&#8243; tall. Solving the equation shown in figure 4 for the values given, and a distance of 41.6 inches<a  href="#bhl-1-footnote-2"><sup>2</sup></a> is calculated.</p>
<p>Whether or not this is more practical than a tape measure is probably up for debate, what isn&#8217;t debatable is that this still isn&#8217;t practical for photography. Accuracy is dependent on how well you know the size of the subject and how accurate you can measure the scale and the whole thing is predicated on being able to work out an equation on the scene as a table is still problematic because of the errors in subject size. Fortunately for people shooting rifles, an error of a few feet has little impact on a shot that&#8217;s covering 100s of feet.  However, an 85mm f/1.4 lens used to make a portrait has a total depth of field of only 4.1 inches at 10 feet.</p>
<p>For what it&#8217;s worth, I&#8217;m not aware of this style of ranging ever being applied to common photographic equipment. It&#8217;s certainly not accessible to most people. However it does introduce the trigonometric strategy for calculating distance rather clearly and that&#8217;s what all focusing aids based on range finding use one way or another.</p>
<h3>The Coincident Image Rangefinder</h3>
<p>The solution to the having to solve equations is to cleverly build that into mechanics of the rangefinder and present it to the user in a simple, easy to understand manner. The basis for doing that is to turn the triangle around so that the length of the subject in the previous figure now becomes a fixed length inside the camera/rangefinder.</p>
<p>The ease of use problem is solved by presenting the user with a pair of superimposed images where adjusting the alignment of the images corresponds with setting the focus. This all comes together in a device known as a coincident image rangefinder (CIR).</p>
<p>In a coincident image rangefinder, the user knows they&#8217;ve found the correct distance because the two images in the viewfinder are perfectly aligned. Even better, because of the way the CIR works, the user knows (not that it&#8217;s strictly necessary in this case<sup>3</sup>), which way the lens needs to be adjusted to focus the image.</p>
<div id="attachment_1899" class="wp-caption aligncenter" style="width: 660px"><img class="size-large wp-image-1899" title="Coindicent Image Rangefinder (overview)" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/CIR-2-650x177.png" alt="Coindicent Image Rangefinder (overview)" width="650" height="177" />
<p class="wp-caption-text">Figure 5: Reversing range finding triangle.</p>
</div>
<p>Reversing the range finding triangle presents us with two solvable  problems, measuring the angle and combining the two images. The second problem is  addressed by a beam splitter used as a beam combiner. A beam splitter, like most optical elements, it can be used in both directions. That is, when light is fed into two of the sides of the beam splitter, it will superimpose them over each other and send them out a third side.</p>
<div style="width: 300px; float: right;">
<div id="attachment_1891" class="wp-caption alignright" style="width: 258px"><a  href="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/CIR-1.png" rel="lightbox[1917]"><img class="size-thumbnail wp-image-1891   " title="Basic parts of a coincident image rangefinder focused at infinitiy." src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/CIR-1-248x250.png" alt="Basic parts of a coincident image rangefinder focused at infinitiy." width="248" height="250" /></a>
<p class="wp-caption-text">Figure 6: Parts of a basic coincident image rangefinder focused at infinity</p>
</div>
<div id="attachment_2064" class="wp-caption alignright" style="width: 267px"><img class="size-full wp-image-2064  " title="Distance Equation: distance (d) = baselength b * tan( 2 * theta)" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/16/a-brief-history-of-focusing-finding-range-without-a-ruler/dbtan2theata.gif" alt="Figure 7:" width="257" height="34" />
<p class="wp-caption-text">Figure 7: Distance equation</p>
</div>
<div id="attachment_1900" class="wp-caption alignright" style="width: 260px"><a  href="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/CIR-3.png" rel="lightbox[1917]"><img class="size-thumbnail wp-image-1900 " title="Focus and Misfocus alignments in a Coincident Image Rangefinder" src="http://www.pointsinfocus.com/wp-content/uploads/2009/08/07/a-brief-history-of-focusing-the-early-years/CIR-3-250x203.png" alt="Focus and Misfocus alignments in a Coincident Image Rangefinder" width="250" height="203" /></a>
<p class="wp-caption-text">Figure 7: Simplified light paths though a coincident image rangefinder</p>
</div>
</div>
<p>The second problem, measuring the angle formed between the two rays form the subject. This appears more challenging at first, however even that is relatively straight forward.</p>
<p>The law of reflection states that the angle of incidence is equal to the angle of reflection. From this two things become clear, first that when the mirror is rotated 45° as shown in figure 6, the camera will be focused at infinity. Second, we know that the angle between the two light rays is equal to twice the angle the mirror will rotated.</p>
<p>From the second point, the equation shown in figure 7 can be derived;  where d is the distance to the subject, b is the rangefinder&#8217;s base length and θ is the angle the mirror is rotated. Further, this makes measuring the angle α (in figure 5) directly unnecessary to calculating the distance as it was done in the previous method.</p>
<p>The final piece of the puzzle is coupling the rotating mirror to the lens&#8217;s focusing ring, so the whole system can be driven by the operator simply by adjust the lens. The actual math is  hidden from the user in this mechanical coupling.</p>
<h4>How it all fits Together</h4>
<p>When the lens isn&#8217;t focused properly, the reflected light from the mirror isn&#8217;t aimed at the center of the beam splitter. Thus the combined image is  misaligned, the direction of the misalignment is also a queue to the direction of the focus error. Figure 8 shows an exaggerated schematic of a coincident image rangefinder at various focus positions.</p>
<p>In practice it&#8217;s not quite this simple and there are more elements included to insure that both images are right side up and to project framing lines into the viewfinder, but the concept is the same for all coincident image rangefinders. Visual alignment is the key here, and what makes a CIR easily accessible to all users. The complicated math is handled by the people designing and building the cameras.</p>
<p>This system is used in cameras that are collectively called rangefinders. Arguably, the most successful example of this type of camera  is Leica&#8217;s M series of rangefinder cameras.</p>
<p>Now that rangefinder provides an easy way to determine when the lens is focused it would seem like this should be the solution to all focusing needs. Simply stick a coincident image rangefinder on top of a camera and it&#8217;s good to go.</p>
<p>Not so fast&#8230;</p>
<h4>Problems with a Coincident Image Rangefinder</h4>
<p>There are a few issues the coincident image rangefinder presents. First since a rangefinder doesn&#8217;t work though the imaging lens,  calibration of the lens-mirror link becomes very important. Small errors in mounting distance, lens construction or even rangefinder construction can throw the focus off enough to cause problems and they aren&#8217;t visible until after the image is made.</p>
<p>The second, and more fundamental, issue is accuracy. The rangefinder&#8217;s base length dictates the angle the mirror has to rotate for a given focus distance, because of that it controls the accuracy of the range finder. To make the measurement more accurate, a longer base length is needed to increase the angle the mirror has to rotate though. To give an idea how much rotation is involved, the mirror in a hypothetical rangefinder with a 60mm base length will rotate just over 0.5° from the infinity position when focusing on a subject 3M away; at 30m it will have been rotated just over 0.05°.</p>
<p>The  objective for the rangefinder designer is to choose a rangefinder base length that is sufficiently long to provide enough accuracy with the focal lengths and working distances that will be used with the system. On the other hand the size of the camera places hard limits on the maximum length of the range finder base length. In turn the limits of the rangefinder place limits on the maximum focal length that the system can reasonably support.</p>
<p>This method of range finding works well, in practice, for wide-angle, normal and short-telephoto focal lengths because the depth of field at long distances grows quickly enough to mask errors in focus. However, telephoto and super telephoto focal lengths require much greater accuracy at long distances. That, coupled with the fixed external viewfinder makes long telephot lenses unwieldy at best on this type of camera, and in general they aren&#8217;t available for rangefinder systems.</p>
<h3>Conclusions</h3>
<p>The coincident image rangefinder solves some of the problems of focusing a small format camera but not all of them. This is no slight of the design though. One things a rangefinder camera offers that was impossible to achieve, before digital at least, is a way to build a very compact camera that doesn&#8217;t have any large moving parts. In fact when the exposure is being made, the only moving part in a rangefinder camera is the shutter. This makes rangefinder cameras very quite, as well as eliminating mirror slap induced vibration reducing image quality.</p>
<p>Next time we&#8217;ll look at how to make a rangefinder thin enough that it can be placed in a through the lens situation as used in an single-lens reflex camera.</p>
<div style="border: thin solid gray; padding: 5px; background: #f0f0f0 url(none) repeat scroll 0% 0%; font-size: x-small; clear: both;">
<p><a name="bhl-1-footnote-1"></a>1. Using the proper mathematical definition of a milliradian and not the sniper/military approximation.</p>
<p><a name="bhl-1-footnote-2"></a>2. As a point of note using the standard formula for mils as used by shooters ((size/# mills) * 1000) the distance calculated is 38.1 inches.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.pointsinfocus.com/2009/08/a-brief-history-of-focusing-finding-range-without-a-ruler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

