<?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; In-depth Guides</title> <atom:link href="http://www.pointsinfocus.com/learning/feed/" rel="self" type="application/rss+xml" /><link>http://www.pointsinfocus.com</link> <description>Focusing on better photography</description> <lastBuildDate>Thu, 23 May 2013 20:25:36 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>How I manage Lightroom&#8217;s Catalog Backups</title><link>http://www.pointsinfocus.com/learning/digital-darkroom/how-i-manage-lightrooms-catalog-backups/</link> <comments>http://www.pointsinfocus.com/learning/digital-darkroom/how-i-manage-lightrooms-catalog-backups/#comments</comments> <pubDate>Wed, 15 May 2013 16:00:15 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Digital Darkroom]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=10763</guid> <description><![CDATA[I don’t usually do the whole computer tips thing, maybe I should do some more of it. The impetus for this post was a friend of mine who had close to 100GB of Lightroom catalog backups—and that was less than a year of weekly backups—sitting on his computer taking up precious space on yet another [...]]]></description> <content:encoded><![CDATA[<p>I don’t usually do the whole computer tips thing, maybe I should do some more of it. The impetus for this post was a friend of mine who had close to 100GB of Lightroom catalog backups—and that was less than a year of weekly backups—sitting on his computer taking up precious space on yet another drive stretched to the limits.</p><p>Lightroom’s catalog backups are merely a copy of the currently open .lrcat catalog file. If your catalog is big, the backup will be as well. So for example, my 30,000-image catalog takes up almost 700MB of disk space. Every week or so it gets backed by Lightroom, after 4 weeks there’s a total of 2.8GB of backed up catalog files in addition to the 700MB active catalog sitting on my drive. Perhapse not significant for me, but when you have a 2G catalog and you don’t keep on top of manually removing the backups you can very quickly end up with a whole lot of space taken up by the backups.</p><h2>Compression</h2><p>I approach the issue size with the catalog and it’s backups in a multi fold way. To start with, I use Window’s built in NTFS compression to compress my catalogs and their backups. On average, I see about a 50% reduction in Lightroom catalog file sizes due to NTFS compression.</p><p>I would point out, that while it might seem similar to “zip” or “compressed” folders, NTFS (file system level) compression is not the same thing. While you can zip the backup catalogs manually, you cannot compress the main catalog that way and still be able to use it.</p><p>As I understand it, MacOS also offers file system level compression for HFS+ formatted volumes. Unfortunately, from a cursory Google search there doesn’t appear to be an easy way to enable or disable it without dropping into the command line. Moreover, since I don’t have a Mac, I can’t walk through the enabling it. Further Apple recommends against using HFS+ compression for compatibility reasons. In short, you might be able to do something with file-system level compression, or not, I simply don’t know.</p><p>NTFS compression can be enabled though the Advanced button in the Folder Properties (right click -&gt; properties) dialog.</p><h2>Getting Fancy with PowerShell and 7-Zip</h2><p>NTFS compression is good, but not that good. My 696MB catalog compresses with NTFS compression to 296MB, but if I use 7-Zip to compress it into a 7Z archive file, it shrinks down to a mere 24.6 MB.</p><p>Just compressing it is good enough to save tons of space; throwing away old copies take that even further. Unfortunately, carrying this out is a little more complicated than just turning on NTFS compression.</p><p>Normally for scheduled task kind of work, I turn to bash on a Linux box, this is also what you mac users would want to use.</p><p>Initially I had envisioned a rather simple script that duplicated the command <code>find $lr_bak_path –directory –mtime +30 –delete –print</code>. In short, delete every directory that’s older than 30 days.</p><p>That was the initial thought, after playing around in PowerShell for a while I came up with the script published later in the article. Instead of deleting based on time, it deletes based on the number of backups I want to keep. That is, it’ll keep the last 4 backups even if they are 2 or 3 months old. It also compresses the backed up catalogs into 7-Zip archives, so I get massive storage savings while retaining backups of my catalog.</p><p>One hurdle to running PowerShell scripts is that Microsoft sets PowerShell by default to not execute scripts. To fix this, you need to run set-executionpolicy from an administrator PowerShell prompt, as show below.</p><pre>PS C:\windows\system32&gt; set-executionpolicy RemoteSigned</pre><p>There are several options you can pick, but RemoteSigned is most secure without also requiring you to sign your own scripts.</p><p>I also elected to use 7-Zip to compress my backups. I’ve added a check for it being installed in the event that you have it installed too, or you can download it from 7-zip.org and install it. Two keep points, you’ll need to edit the $lrbackup_path line to point to where your Lightroom catalog backups actually are, second you might want to change the $backups_to_keep line to however many old backups you want to keep.</p><p>I automated the whole shooting match by running the script as a scheduled task though the Windows Task Scheduler. Getting the task scheduler to work is a bit tricky. You have to invoke powershell to run the script, not just the script. In the action dialog, the program/script will be <code>%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe</code>. Then to run the script, I found that setting the argument to <code>-NoProfile -File "%path_to_script" -ExecutionPolicy RemoteSigned</code>, worked for me.</p><p>If I there&#8217;s demand for it, or I have some free time, I&#8217;ll look into seeing if i can put together a video walk though of the whole process. In the mean time, here&#8217;s the powershell script I&#8217;m running.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">The Script</span></p><pre style="width: 100%; overflow: scroll;"># Script to compress and clean up Lightroom backups
# This script is provided as is and without any warranty or support.
# From: http://www.pointsinfocus.com/learning/digital-darkroom/how-i-manage-lightrooms-catalog-backups/
# Change this value to point where your Lightroom Backups are stored
$lrbackup_path = “$HOME\Pictures\Lightroom\Backups”
# Change this value to
$backups_to_keep = 4
# Delete the following line after the first run of the script
$whatifpreference = $true
#
# Do not Edit beyond this point
#
$7z = Test-Path 'C:\Program Files\7-Zip\7z.exe'
function create-7zip([String] $aDirectory, [String] $aZipfile) {
  [string]$pathToZipExe = "C:\Program Files\7-Zip\7z.exe";
  [Array]$arguments = "a", "-t7z", "$aZipfile", "$aDirectory", "-r";
  &amp; $pathToZipExe $arguments;
}
# Remove everything but the last 4 backup directories.
Get-ChildItem $lrbackup_path -Directory | Sort-Object LastWriteTime -Descending | select -skip $backups_to_keep |% { Remove-Item $_.fullname -Recurse -Force }
if( $7z ) {
  #Compress and remove archives.
  $archives = Get-ChildItem $lrbackup_path -Directory
  foreach ( $archive in $archives ) {
    create-7zip ( $archive.FullName ) ( $archive.FullName )
    Remove-Item $archive.FullName -Force -Recurse
  }
  # Trim number of backups to $backups_to_keep.
  Get-ChildItem $lrbackup_path -Filter "*.7z" | Sort-Object Name -Descending | select -skip $backups_to_keep |% { Remove-Item $_.fullname -Force }
}</pre>]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/digital-darkroom/how-i-manage-lightrooms-catalog-backups/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Canon 5D Mark 3 Video; Depth of Field and Diffraction</title><link>http://www.pointsinfocus.com/learning/cameras-lenses/canon-5d-mark-3-video-depth-of-field-and-diffraction/</link> <comments>http://www.pointsinfocus.com/learning/cameras-lenses/canon-5d-mark-3-video-depth-of-field-and-diffraction/#comments</comments> <pubDate>Wed, 17 Apr 2013 16:00:00 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Cameras & Lenses]]></category> <category><![CDATA[video]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=10612</guid> <description><![CDATA[I don’t think it’s a stretch to say that one of the more attractive features that make the full frame VDSLRs attractive is that the large sensor can render shallow depth of field. When compared to a Super 35 frame, you’re looking at almost a stop narrower depth of field for the same aperture. For [...]]]></description> <content:encoded><![CDATA[<p>I don’t think it’s a stretch to say that one of the more attractive features that make the full frame VDSLRs attractive is that the large sensor can render shallow depth of field. When compared to a Super 35 frame, you’re looking at almost a stop narrower depth of field for the same aperture. For example, a 50mm f/1.4 lens on a 5D mark III would render a scene about the same as a 35mm f/1 lens when used on a Super 35 sensor like the one in the Canon C100.</p><p>So, the big sensor sensor in the 5D mark III is good for thin depth of field. What about when you want lots of depth of field?</p><p>My first reaction was that I&#8217;d need to consider another platform; something with a smaller sensor that I could leverage for more depth of field. That was, at least, until I started running some numbers, which actually surprised me.</p><p>Aside from the limit imposed by the lens itself, diffraction is the biggest problem with stopping down much beyond the diffraction-limited aperture for a sensor. For a 5D mark 3 with 6.25μm pixels would be diffraction limited around f/9.3 as <img
src='http://s.wordpress.com/latex.php?latex=N%3D%5Cfrac%7B6.25e%5E%7B-6%7D%7D%7B1.22%5Ctimes550e%5E%7B-9%7D%7D%3D9.3&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='N=\frac{6.25e^{-6}}{1.22\times550e^{-9}}=9.3' title='N=\frac{6.25e^{-6}}{1.22\times550e^{-9}}=9.3' class='latex' />, at least when shooting stills.</p><p>However, when shooting video, the 5D mark III, as best as I can tell, bins 9 pixels in a 3&#215;3 grid into a single pixel for the video output. This is in part of the reasons the 5D mark III has a 5760-pixel wide 22MP sensor instead of a 21MP sensor like the one in the 5D mark II.</p><p>In any event, at least somewhat naively, when shooting video the effective pixel you’re using is 3 x 6.25μm or 18.75μm, which put the diffraction-limited aperture at rather lovely f/28. Not at all bad, especially considering that most of my lenses won’t even stop down that far.</p><p
style="text-align: center;"><span
style="line-height: 1.6em;"><iframe
width="680" height="510" src="http://www.youtube.com/embed/PKUX0GzCWIg?feature=oembed" frameborder="0" allowfullscreen></iframe></span></p><p><span
style="line-height: 1.6em;">Compared to some similarly theoretical numbers form other cameras.</span></p><p>A Canon C300 uses a 4 pixel 2&#215;2 grid (1 red, 1 blue, and 2 separate greens) to produce an RGB tuple video pixel. However, they apparently are demosaiced, instead they’re taken directly to form the RGB tupple. With 6.4-micron pixels, you can expect the C300 to start showing diffraction effects at apertures between f/9.5 and f/19.</p><p>Using the worst-case number, using comparable fields of view, a C300 will show softening at the depth of field equivalent aperture of f/18 on the 5D mark III. Using the best-case number, the depth of field equivalent aperture<a
href="#end1" name="endref1">[i]</a> steps out to just over f/25. A C300’s (or C100 for that matter) crop factor doesn’t help if you’re looking for more depth of field.</p><p>A Canon 7D (or 60D, or T3i, etc.) uses an 18MP APS-C sensor with 4.3-micron pixels. The readout is considerably more complicated than either the C300 or the 5D mark III as it uses binning and line skipping to produce the resulting video file. The makes the computation of a diffraction-limited aperture significantly more complicated, especially since Canon doesn’t fully qualify how the video is produced. However, I would expect to see diffraction effects at somewhere between f/6.5 and f/13 while shooting video. However, the results will likely be asymmetric due to the way the sensor is read out.</p><p>Using the worst-case of f/6.5 the DoF equivalent aperture on the 5D mark III is f/8. With the best case of f/13, the DoF equivalent aperture is f/20. Again, the crop factor doesn’t help get more depth of field, at least not before you should start losing sharpness due to diffraction.</p><p>The short of it, is that the 5D mark III’s pixel architecture for shooting video makes it something of an anachronism. It’s seemingly capable of both incredibly think depth of field when shot wide open with fast lenses, as well being very capable of stopping down without significant image quality loss when depth of field is actually needed.</p><p>Of course stopping down isn’t a perfect solution. Having to stop down further to achieve the same, depth of field may result in raising the gain and as a result potentially produce noisier video. However, that’s a project for another time.</p><div><br
clear="all" /></p><hr
align="left" size="1" width="33%" /><div><p><a
href="#endref1" name="end1">[i]</a> The Depth of Field equivalent aperture is the aperture needed on another platform to render the same depth of field for an appropriately scaled focal length lens to retain the same framing. For example, the full frame DoF equivalent aperture for f/2 on a 4/3rds camera is f/4.</p></div></div> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/cameras-lenses/canon-5d-mark-3-video-depth-of-field-and-diffraction/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>DiY Clap Sticks</title><link>http://www.pointsinfocus.com/learning/diy/diy-clap-sticks-slate/</link> <comments>http://www.pointsinfocus.com/learning/diy/diy-clap-sticks-slate/#comments</comments> <pubDate>Fri, 05 Apr 2013 16:00:00 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[DIY]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[video]]></category> <category><![CDATA[woodworking]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=10494</guid> <description><![CDATA[To quote Vincent Laforet, “50% of any great film is in the sound design, and the first step to great sound design is capturing great audio while on set.” How you get that audio is the big question. Clap sticks, with or without the addition of a slate, is one way of easily synchronizing sound [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><a
href="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Clap-Sticks.jpg" rel="lightbox[10494]"><img
class="size-large wp-image-10544 aligncenter" alt="Clap Sticks" src="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Clap-Sticks-640x426.jpg" width="640" height="426" /></a></p><p>To quote Vincent Laforet, “50% of any great film is in the sound design, and the first step to great sound design is capturing great audio while on set.” How you get that audio is the big question. Clap sticks, with or without the addition of a slate, is one way of easily synchronizing sound by producing a sharp peak that can be aligned in post-production, either with a synchronized audio track or with the visual of the boards striking together.</p><h2>Do you need Clap Sticks or a Clapperboard?</h2><p>For some people, and in some situations, you’ll only be shooting with a microphone hooked up to your camera. Depending on the camera and its capabilities, that audio may be good enough as it stands. In my experience, a Canon 5D Mk. III and a Rode VideoMic Pro, I can get acceptable audio for my needs with careful levels and 1/8” stereo extension cord to put the mic closer to the subjects. Moreover, since I’m recording into the camera, the audio is already synced with the video and there’s no need to have a sharp spike and visual queue to synchronize with.</p><p>On the other hand, if you’re using a camera that doesn&#8217;t have passable input options, you’re forced to use auto-mic-gain, or you need to record more than one subject simultaneously then to get good audio you’re going to need an external recorder. Adding an external recorder to the mix also adds the requirement for synchronizing audio in post. The cheapest and easiest way to do this is to generate a sharp spike that coincides with a visual queue that you can quickly and easily align on the timeline in your editor. This is when you need clap sticks or a clapperboard.</p><h2>Do you need a slate too?</h2><p>I’ve drawn a distinction here, between the part that makes noise, what I’m calling the clapperboard or clap sticks, and the part that is used to convey information about the scene to the editor though the film, the slate. Commercial clapperboards or slates serve both functions, so there’s no secondary question as I’m posing here. However, for a small indie production or one man interview kind of setup, it’s not always necessary to have both and losing the slate part of the equation, if it’s not needed, can free up a bit of room in your bag.</p><p>So do you need a slate or are clap sticks good enough?</p><p>To answer this, you need to ask yourself, “Who’s editing your video?” and, “Do they need to know what they’re looking at?”</p><p>I write my own material, edit my own video, and what I’ve been shooting doesn’t generally involve takes or multiple cameras. In short, I know what I’m looking at because I was intimately involved with it from start to finish, thus the informational aspect of the slate is not entirely necessary for me; at least not in the editorial metadata sense.</p><p>On the other hand, if you pass your work off to another person to edit, have multiple cameras, or do many takes, then you’ll probably want a full slate so the videos themselves contain the needed data so your editors can organized and catalog the files.</p><p>There’s one other reason to consider building your own slate. You can build a slate that contains the information you want not what is considered standard for a film. This is my primary reason for building my slate. I don’t really care about what take or scene I’m shooting, rather I’m interested in the exposure and location metadata that my camera isn’t smart enough to note on its own.</p><h2>Building the Clap Sticks</h2><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319">Materials</td><td
valign="top" width="319">Tools</td></tr></thead><tbody><tr><td
valign="top" width="319"><ul><li>At least an 8” length of scrap 1&#215;4 or wider lumber</li><li>A small hinge</li><li>Screws for the hinge</li></ul></td><td
valign="top" width="319"><ul><li><span
style="line-height: 19px;">Saw</span></li><li>Ruler</li><li>Drill with appropriate bit for the wood screws</li><li>Screwdriver appropriate for the wood screws</li><li><i>Clamps</i></li><li><i>Square (combination square)</i></li><li><i>Sandpaper</i></li><li><i>Tape (gaffer tape will due)</i></li></ul><p><i>(Tools in italics are not strictly necessary, but do help.)</i></td></tr></tbody></table><p>Basic clap sticks are nothing more than a pair of wooden sticks that are hinged together at one end. My first incarnation are two 1-1/2” x 3/4” x 10” (38mm x 19mm x 250mm) pieces cut from a piece of scrap pine 1&#215;6. They’re hinged at one end with a 1-1/2” wide hinge I found in a spare parts box.</p><div
id="attachment_10543" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Tools.jpg" rel="lightbox[10494]"><img
class="size-medium wp-image-10543" alt="Tools" src="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Tools-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Needed Tools</p></div><p>If all you need are clap sticks, then that’s good enough right there.</p><p>To build mine I cut the two 1-1/2” x 3/4” x 10” sticks from a piece of scrap 1&#215;6” pine. The width (1-1/2”) was dictated by the size of the hinge I found in my parts box. The length was something that was large enough to be easy to handle but not overly large to be hard to pack.</p><p>I laid mine out with a combination square, clamped the wood down, and carefully hacked out the pieces with a cheap handsaw.</p><p>Since I used a crappy handsaw, I needed to smooth down the cut edges. If you were cutting this on a table saw, or had a finer toothed handsaw, it wouldn’t be as necessary to clean up the edges. To clean up the edges, I taped a piece of 120-grit sandpaper to a flat surface using gaffer tape on 2 sides (though duct tape, or even masking tape would work), and sanded the cut sides until they were smooth.</p><p>While you have the sandpaper out, and before you put the sticks together, round over the corners so you don’t have any sharp/pointy edges.</p><div
id="attachment_10517" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Clap-Stick-Parts.jpg" rel="lightbox[10494]"><img
class="size-medium wp-image-10517" alt="Parts before assembly." src="http://static1.pointsinfocus.com/2013/04/diy-clap-sticks-slate/Clap-Stick-Parts-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Parts before assembly.</p></div><p>Transfer the marks for the screw holes from the hinge to the end of the sticks and pre-drill them. Then attach the hinge with the screws. A word of warning, it’s very likely the screw holes will be very close to the edge of your sticks. You’ll want to insure you don’t have too large of screws, and that you pre-drilled holes tend towards the center rather than the edges. Even then, it’s possible to split the wood as I did.</p><p>How you finish your sticks is up to you. I gave mine a coat of black paint and then wrapped a couple of bits of white gaffer tape around mine to give them clean finished lines on a black surface.</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/diy/diy-clap-sticks-slate/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>A Long Short Guide to Buying a Used Lens</title><link>http://www.pointsinfocus.com/learning/cameras-lenses/buying-a-used-lens/</link> <comments>http://www.pointsinfocus.com/learning/cameras-lenses/buying-a-used-lens/#comments</comments> <pubDate>Thu, 28 Mar 2013 12:00:00 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Cameras & Lenses]]></category> <category><![CDATA[video]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=1576</guid> <description><![CDATA[There’s no two ways about it good glass is expensive, and glass is far more important to your image quality than the camera is. However, if you’re on a budget, buying your lenses used is an easy way to get good gear at less bank-breaking prices. That said, the used market does have the potential [...]]]></description> <content:encoded><![CDATA[<div><p><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Lens-Testing-Kit.jpg" rel="lightbox[1576]"><img
class="aligncenter size-large wp-image-10447" alt="Lens Testing Kit" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Lens-Testing-Kit-640x426.jpg" width="640" height="426" /></a></p><p>There’s no two ways about it good glass is expensive, and glass is far more important to your image quality than the camera is. However, if you’re on a budget, buying your lenses used is an easy way to get good gear at less bank-breaking prices. That said, the used market does have the potential to be a minefield.</p><p>In my experience, the keys to successfully buying used equipment are simple:</p><ul><li>Know what you’re looking to buy</li><li>Buy from somewhere you can trust or through a reputable medium</li><li>Test everything you possibly can before you can’t get your money back</li></ul><h2>Do your Research</h2><p>Though it should go without saying, I think it bears repeating anyways. As with any lens purchase, you need to do your research before you buy. However, unlike a new lens purchase, I would argue you need to do considerably more research into the quirks of the lens so you can effectively evaluate it.</p><p>Let me give an example. Suppose you’re buying a used Canon EF 28-135mm f/3.5-5.6 IS USM lens. Since this is an IS lens you want to test the IS system to make sure it’s functional and works as intended. You turn the camera to portrait and hit touch the shutter release, and notice the image jumps as the IS system starts up.</p><p>Has the lens been abused? Is the IS system damaged?</p><p
style="text-align: center;"><iframe
width="680" height="383" src="http://www.youtube.com/embed/rgxJiBbiP6k?feature=oembed" frameborder="0" allowfullscreen></iframe></p><p>In actuality, this behavior is something I’ve seen on every one of the 10 or so copies of the EF 28-135mm f/3.5-5.6 IS USM lens I’ve handed. From mine after years of use, to brand new ones right out of the Canon box. As far as I can tell, it’s perfectly normal behavior for the IS system on this lens, and yet I’ve never seen a review—except for mine—mention it.</p><p>On the other hand consider how that looks if you’ve never handled that lens before. When under the gun to evaluate that the lens is free and clear of damage and defects before handing over cash for the sale, you might think twice when you see the image jumping around.</p><p>The other major area to research is the potential and predominate failure modes for the lens you’re looking at. Due to the way they’re designed, many lenses have one or two specific types of problem that are more likely than any others are. Many lenses, especially with early stabilization systems, are more likely to have the IS system damaged. Some lenses have had systemic design defects at one point in time. Others may have systemic issues such as focus calibration problems or AF accuracy.</p><p>The list of problems and affected lenses is long and illustrious with virtually no manufacturer exempted. Moreover, just because there’s the potential to have a problem doesn’t mean that you should avoid the lens. However, knowledge of the problem can help guide your hand when you evaluate the lens.</p><p>Some of this kind of research you can do by reading every review you can get your hands on. I know I try to point out quirky normal behaviors or known standing issues in my reviews but I can’t cover everything. However, most reviews won’t cover failures modes that might occur but didn’t while the item was being reviews. For that kind of information, one good source is Lens Rentals.com’s blog. The keep track and publish semi-annual round ups of the most problematic lenses in their fleet and the problems they had. Additionally sometimes, you just have to start asking questions on photography centric discussion forums.</p><h2>Where to buy</h2><p>There are two primary sources for buying used equipment; camera stores/used camera dealers, and from another individual (either in person or via the internet). They each have their pros and cons, and different levels of risk.</p><p>Buying from a camera store or used camera dealer is probably the easiest and safest way to buy used lenses. Reputable dealers thoroughly inspect the lenses they sell to insure they function properly. More importantly, the majority of used dealers stand behind their products with some kind of return period. For the buyer this means you’re more likely to get a lens in good shape to start with, and can do very careful and through tests when you receive it, instead of trying to quickly check it over in a fast food joint’s dining room.</p><p>The other option is buying person to person (P2P). Person to person sales can offer a better deal for everyone involved, namely they cut the middleman out and put more money in the hands of the seller, which can also help lower the asking price. However, at the same time, there are slightly more risks to buying P2P and the buyer is under the gun to insure that what they’re buying is what they thought it was and is functional.</p><p>Person-to-person sales require some common sense from the start. The old adage, if the deal looks too good to be true, it probably is. Additionally, if the seller is unwilling to let you inspect the lens at the time of purchase before handing over money, I would suspect that something is amiss as well.</p><p>I’ve bought and sold gear both ways, and from a sheer laziness perspective I like being able to have a reputable company standing behind what I’m buying. However, at the same time, I’ve had very good experiences buying from a fellow photographer, and it sometimes give you an opportunity to meet new people, make friends, and talk shop some.</p></div><h2>Inspecting the Lens</h2><p>I’m going to be focusing on the kinds of things I do if I’m buying person to person and meeting the seller. As such, I’m focusing on how to quickly gauge the quality of the lens being sold, and insure that it at least is functional, not so much putting it through extensive testing.</p><p>For lenses bought from a reputable dealer with a return window, I would conduct the same tests I would on a new lens, which is outside the scope of this article. My objective in inspecting the lens is to nail-down quickly the quality and functionality of the lens.</p><p>With a little practice, the actual inspection will take far less time than reading this article will.</p><p>Also bear in mind, in this article I’ll be covering how to test as many systems and features as I can readily test in buying a new lens. Some of these cases may not be applicable to the lens you’re buying; again, the research you do on your specific lens should be your guide.</p><h2>The Tools</h2><ol><li>A camera that will mount the lens</li><li>A flashlight</li><li>A blank white target like a piece of matte board or paper or preferably a gray card</li><li>A Blower (Like a rocket blower)</li><li>A lens brush</li><li>A micro-fiber lens cloth</li><li>A filter, or threaded ring (step up or filter kit adapter) of the right size and known to be in good condition (round)</li></ol><div
id="attachment_10447" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Lens-Testing-Kit.jpg" rel="lightbox[1576]"><img
class="size-medium wp-image-10447" alt="Basic kit for evaluating a lens." src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Lens-Testing-Kit-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Basic kit for evaluating a lens.</p></div><h2>Physical Inspection</h2><p>The first thing I do is conduct a physical inspection of the exterior of the lens. I’m looking for scratches, dents, dings, or anything that looks like damage outside of normal wear and tear. I’m also looking to gauge the level of wear and tear.</p><p>I have to purposes for this inspection. First, is to ensure the lens in hand is the same one that was advertised. I.e. any pictures showing the condition of the lens are showing this lens and not some other lens.</p><p>Secondly, it’s to start gauging the way the lens was treated in general compared to how the seller advertised it’s use. This can also suggest the potential for problems that may not be easily diagnosed in the field, which may warrant passing or negotiating the price.</p><p>In practice, I’m looking over the glass as I’m looking over the body, but for the sake of clarity I’ve separated that into its own section.</p><p>When I’m doing my inspection, I want to inspect as much of the lens as I can. If the lens extends when focusing or zooming, extend the focus and zoom barrels as far as they can and look them over. For lenses that use focus-by-wire designs, such as Canon’s EF 85mm f/1.2L USM II, you’ll need to mount the lens on a camera to extend the inner lens barrel.</p><p>Excessive scratches, marring, paint loss, and brassing, can all be indicators that the lens has been abused. However, don’t go overboard. Some visible “imperfections” can be normal and acquired form basic usage. Some things to keep in mind:</p><ul><li>Lenses with plastic barrels examined closely under good light will show some evidence of their molding marks, don’t confuse these with cracks. Molding marks will be perfectly straight along the axis of the lens, and may be repeated around the circumference of the barrel as the mold may have multiple sections.</li><li>Some coatings will show wear much easier than others will. Sigma, for example, has historically finished many of their lenses with a coating that is softer than what most manufactures use and it shows wear easily, even if the lens has otherwise been only lightly used.<a
title="" href="file:///D:/Points%20in%20Focus/Articles/Buying%20a%20Used%20Lens.docx#_edn1"><br
/> </a></li></ul><p>Ultimately, <b>I’m looking for the lens to be in good condition for its age and indicated usage</b>. A 50 year old lens that looks new and was advertised as being rarely used is likely in great shape; 2 year old lens that looks like it’s been used for 50 years, probably not so much.</p><h2>Mechanical Inspection</h2><p>Once I’ve looked the lens over for obvious damage, it’s time to look more in depth at the mechanical functionality of the lens. My goal is to insure that the major mechanical systems on the lens work well and don’t have any major issues. The key areas are:</p><ul><li>Filter threads</li><li>Focus ring and focus</li><li>Zoom ring and zoom</li><li>Controls</li></ul><h3>Filter Threads</h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b><span
style="text-decoration: underline;">Pass</span><br
/> </b><span
style="line-height: 1.6em;">A filter screws on and off easily indicating that the filter threads are round and undamaged </span></p><p><b><span
style="text-decoration: underline;">Fail</span><br
/> </b><span
style="line-height: 1.6em;">The filter threads are damaged or out of round</span></p></div><p>Whether or not you personally use filters for protection of effects, damaged filter threads, especially out of round ones, can indicate that the lens has been dropped or otherwise seriously mishandled.</p><p>When the threads are in good condition, it should be easy to attach and remove a good quality filter without any resistance, bumps, or hang-ups.</p><p>First with a flashlight, I inspect the filter rings to insure they don’t appear damaged. Then I simply screw on a filter or filter ring I know to be round (I like a good quality one that generally is easy to remove). Since I’m not trying to attach the filter, I don’t even have to mount the filter completely; an out of round filter mount will be readily obvious long before that point.</p><h3>Focus Ring</h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b><span
style="text-decoration: underline;">Ideal</span><br
/> </b><span
style="line-height: 1.6em;">The focus ring turns smoothly for the class of lens. </span></p><p><b
style="line-height: 1.6em;"><span
style="text-decoration: underline;">Avoid<br
/> </span></b><span
style="line-height: 1.6em;">The focus ring is overly stiff, feels like there’s sand in the mechanism or doesn’t cover the full range.</span></p></div><p>The focus ring should feel right for the price and type of lens that you’re purchasing. Nevertheless, what does that mean?</p><p>Focus rings have morphed over the years, from wide prominent rings with buttery smooth well-damped actions and large amounts of throw on manual focus lenses, to thin almost useless ridged bits on cheap autofocus kit lenses, and many variants in between. Your research should guide your expectation but here are some general thoughts.</p><p>Very inexpensive lenses, like the Thrifty-Fifties or virtually all crop-format kit-lenses, will usually have a focus ring that’s very narrow, not very smooth in operation, and sometimes little more than ridges cast into the inner lens barrel. Don’t expect an awful lot in terms of feel from these focus rings, they may even have a degree of “roughness” that you otherwise would consider worth passing on.</p><div
id="attachment_10429" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Entry-level-lens.jpg" rel="lightbox[1576]"><img
class="size-medium wp-image-10429" alt="Most entry-level autofocus lenses will have a wide rubberized zoom ring but little to no focus ring. In this case the focus ring is little more than molded ridges on the inner lens barrel, which rotates when focusing." src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Entry-level-lens-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Most entry-level autofocus lenses will have a wide rubberized zoom ring but little to no focus ring. In this case the focus ring is little more than molded ridges on the inner lens barrel, which rotates when focusing.</p></div><p>Going a step higher, entry-level ultrasonic lenses (USM, AF-S, HSM, etc.) will typically have a focus ring that’s wider than that of the very low-level lenses, but not nearly as wide as a professional AF lens or a manual focus lens. In many cases the ring will still be hard plastic, and comparatively narrow. However, it should be somewhat smoother than the previous class but may not be depending on whether the lens uses a micro- or ring-USM motor and has full time manual focus options.</p><div
id="attachment_10430" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Mid-Tier-Lens.jpg" rel="lightbox[1576]"><img
class="size-medium wp-image-10430" alt="Most mid-tier lenses retain the prominent rubberized zoom ring but bring the focus ring up from being a minimal molding. On this Canon lens, the focus ring is hard plastic as opposed to rubberized." src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Mid-Tier-Lens-480x333.jpg" width="480" height="333" /></a><p
class="wp-caption-text">Most mid-tier lenses retain the prominent rubberized zoom ring but bring the focus ring up from being a minimal molding. On this Canon lens, the focus ring is hard plastic as opposed to rubberized.</p></div><p>Going one-step further, professional level AF lenses will usually have a wide, prominent, often rubberized, focus ring, typically located towards the front of the lens barrel. The ring will likely be somewhat smoother when rotated than the previous class. Likewise, these lenses usually use ring-type ultrasonic motors, so the focus ring will turn past the end stops with a noticeable increase in resistance.</p><div
id="attachment_10431" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Pro-Lenses.jpg" rel="lightbox[1576]"><img
class="size-medium wp-image-10431" alt="Pro grade autofocus lenses typically see a reversal of positioning for the zoom and focus rings, with the focus ring towards the front. Moreover, the rings are often equal in size and usually finished to the same standards (rubberized or not)." src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Pro-Lenses-480x384.jpg" width="480" height="384" /></a><p
class="wp-caption-text">Pro grade autofocus lenses typically see a reversal of positioning for the zoom and focus rings, with the focus ring towards the front. Moreover, the rings are often equal in size and usually finished to the same standards (rubberized or not).</p></div><p>When it comes to prominence and quality feel, the top is found in purely manual focus lenses. The focus rings on these lenses should be butter smooth when turned. There shouldn’t be any grittiness nor should they feel like there is sand in the mechanism.</p><div
id="attachment_10432" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Manual-Focus-Lenses.jpg" rel="lightbox[1576]"><img
class="size-medium wp-image-10432" alt="Manual focus lenses will always have a prominent focus ring, with the zoom ring on some MF zooms being nearly the entire outer surface of the lens. Even on this small 50mm prime, the entire front half of the lens, from the depth of field markings forward is smoothly rotating focus ring." src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Manual-Focus-Lenses-480x451.jpg" width="480" height="451" /></a><p
class="wp-caption-text">Manual focus lenses will always have a prominent focus ring, with the zoom ring on some MF zooms being nearly the entire outer surface of the lens. Even on this small 50mm prime, the entire front half of the lens, from the depth of field markings forward is a smoothly rotating focus ring.</p></div><p>In any case, the focus ring shouldn’t be loose (though there is sometimes some front-back play in the focus ring on mid-tier ultrasonic powered lenses with full time manual), nor should it feel like it has sand, grit, or anything else in the mechanism when the ring is turned.</p><h3>Zoom Ring</h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b><span
style="text-decoration: underline;">Ideal</span><br
/> </b><span
style="line-height: 1.6em;">The zoom ring turns smoothly for the class of lens.</span></p><p><b
style="line-height: 1.6em;"><span
style="text-decoration: underline;"><b
style="line-height: 1.6em;"><span>Avoid<br
/> </span></b></span></b>The zoom ring is overly stiff, feels like there’s sand or grit in the mechanism or doesn’t turn though the complete range</p></div><p>Like the focus ring, the zoom ring should be smooth but offer some resistance when turned. However, how much resistance will depend on the lens and the angle it’s held. I find the following is a good place to start.</p><ul><li>Lenses that don’t extend when zoomed will require less force and have a smoother zoom ring than a lens with an extending barrel.</li><li>Lenses with multiple extending barrels (found most often in inexpensive mid-tier zooms) or lenses with long barrels may have even more resistance over some or all of the zoom range.</li></ul><p>When I test the zoom ring, I make sure that I’m holding the lens level so that gravity doesn’t artificially skew my perception of the feel of the ring. Additionally when the lens is held level, the force required to zoom in either direction should be about the same.</p><p>While not strictly a mechanical test, you may also want to check from zoom creep at this point as well. Some lenses, will exhibit this worse than others will, and it can vary from sample to sample of the same model. One example where I’ve seen this is Canon’s EF 28-135mm f/3.5-5.6 IS USM, some copies will creep from 28mm to ~50mm when held pointing down, others don’t seem to creep at all.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">Other Controls</span></p><p>The last thing to check is that all the other controls on the lens appear to be functional and attached. Canon lenses, for example, typically have the AF/MF and stabilizer switches mounted in molded protrusions on the lens barrel, in many cases there’s a screw or two holding this to the lens. However, some manufacturers use plastic clips to attach the controls.</p><p>In any case, the controls should be firmly attached, not loose. Moreover, the switches should change position easily and not jam. We’ll come back to verifying their functionality in a bit.</p><h2>Optical Inspection</h2><p>The last section covered the things I look over on the lens body, now I’m going to cover what I look over on the lens elements themselves.</p><p>My goal here is to uncover any major optical defects before the lens is mounted and tested on the camera. Defects, for me, include fungus, scratches, chips, and other damage to the optical path that can be seen.</p><h3>Scratches and Chips</h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b>Ideal<br
/> </b>Clean front and rear elements</p><p><b>Passible</b><br
/> Small scratches or chips on the front element</p><p><b>Avoid<br
/> </b>Any damage to the rear element or sign</p></div><p>Small chips and scratches on the front element are a far bigger detriment to the lens’s value than they are to the images it produces. A number of websites have published demonstrations of just how much damage a lens’s front element has to take before it seriously affects image quality. In most cases, the front element had to be cracked or completely shattered to affect the image seriously.</p><p>That said, damage to the front element could increase flare and ghosting, though small ones aren’t likely to be an issue either.</p><p>Damage to the rear element, is a completely different story. Scratches or chips out of rear element almost certainly will affect image quality, especially if the lens is stopped down.</p><p>Personally, I won’t buy a lens that doesn’t have flawless front and rear elements. However, this is one place where you shouldn’t necessarily do what I do just because I said so. If the deal is good, the damage is small, and on the front element only—especially if it’s a scratch in the coating as opposed to a chip out of the glass—the odds are you’ll never see any indication that it’s even there in your pictures.</p><h3>Dust<a
href="file:///D:/Points%20in%20Focus/Articles/Buying%20a%20Used%20Lens.docx#_msocom_2"><br
/> </a></h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b>Ideal<br
/> </b>No dust</p><p><b>Passable</b><br
/> A spec or two of dust in the lens</p><p><b>Avoid<br
/> </b>A lens full of dust or other debris</p></div><p>Many lenses I’ve handed, including some very high end ones, have had a few particles of dust in them even when new from the factory. Fortunately, a few particles of dust won’t have any impact on image quality.</p><p>That said, there should not be excessive amounts of dust in a lens. Even push-pull zooms, like Canon’s EF 100-400mm f/4.5-5.6L IS USM—affectionately known to some as a dust pump—shouldn’t develop any appreciable amount of dust inside the lens over its life. A lot of dust can indicate a more pervasive problem with the lens or the way it was handled.</p><h3>Mold/Fungus<a
href="file:///D:/Points%20in%20Focus/Articles/Buying%20a%20Used%20Lens.docx#_msocom_3"><br
/> </a></h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small"><p><b>Accept<br
/> </b>No signs of mold or fungus</p><p><b>Avoid<br
/> </b>Anything with any sign of mold/fungus or having mold/fungus damage.</p></div><p>While you’re looking for dust, and chips you’ll also want to keep an eye out for mold and fungus. Fungus is more likely in older lenses, but it can happen to any lens that has been stored for a long time in poorly controlled (damp and dark) conditions.</p><p>Fungus appears in a number of ways. Sometimes it will look like spots or blobs in the lens (or on it depending on where it’s growing). It can also look like spider webs or hairline cracks.</p><p>Lenses with visible fungus growth are absolute avoids for me.</p><p>Having fungus cleaned from a lens is never really a good solution. For starters, it requires complete disassembly of the lens, and there’s no guarantee the reassembled lens will be as sharp as it once was—of course, it could be better too. On top of that, the fungus will actually destroy the lens coatings resulting in damage to the lens element that’s permanent even after the fungus has been removed. Finally, there’s some evidence that the fungus can spread from an infected/contaminated lens to uncontaminated lenses, which is something I want to avoid.</p><h2></h2><h2>Function Testing</h2><p>I’ve you’ve made it this far in the testing then the lens has no obvious defects in the glass or body. This is a good thing, now it’s time to confirm that it works the way it should. The only potential hang in function testing is that it may be difficult to separate a flaky switch form a more serious problem. Then again, if, for example, you can’t, get the lens’s AF system to kick in and it wasn’t advertised as having a defective AF system, you’ll probably want to pass on the lens.</p><p>Since all these tests require the lens be powered up to perform correctly, you’ll need to mount the lens to a suitable body to start your function testing.</p><h3>Auto Focus</h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b>Check</b></p><ul><li>AF switch turns the AF system on and off</li><li>AF limiter limits the AF range</li><li>AF system drives the lens in both directions</li></ul></div><p>Depending on the lens there may or may not be an auto/manual focus switch on the lens. For example, lenses for Canon’s EOS bodies will always have an AF/MF switch on the lens. However, Nikon AF-D lenses use the camera’s in body focus motor and so don’t need an AF/MF switch as the body provides that. Whether or not your lens has an AF/MF switch or relies on some on-body control will be something you need to determine while doing your research.</p><p>Since I’m most familiar with Canon lenses and cameras, I’ll focus on how I test a lens for their EOS system, but much of what I say can be applied to any other system.</p><p>The first think I’ll check is the AF/MF switch’s function. With the AF/MF switch set to AF, the camera’s status display should show “ONE SHOT”, “AI FOCUS”, or “AI SERVO” for the focus mode. With the AF/MF switch flipped to MF, the status display will change to “M FOCUS” indicating that the camera knows a lens is mounted but it cannot be focused.</p><p>I’ll then manually focus at infinity and then use the AF system to focus back to some closer target. Like with the physical inspection, if the lens is not a USM lens that supports full time manual focus, you’ll want to switch the AF/MF switch to MF before you adjust the lens’s focus. If that worked, I’ll then do the same from macro to some point further away. I’m mostly looking to make sure the AF motor will drive the lens in both directions here.</p><p>After I’m satisfied that the AF system works in general, I’ll check that the distance limiter works if the lens has one. While I don’t bother testing the distances with a ruler, generally a lens with a distance limiter will focus as close as across the room with the limiter on and to 4 or 5 feet with the limiter off. For macro lenses, I’ll also check that the “macro” position won’t focus out to infinity.</p><p>If the lens focuses when it should and doesn’t when it shouldn’t, the odds are good the AF motor and AF/MF switches are in working order.</p><h3>Image Stabilization<a
href="file:///D:/Points%20in%20Focus/Articles/Buying%20a%20Used%20Lens.docx#_msocom_4"><br
/> </a></h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b>Check</b></p><ul><li>Switch enables and disables the stabilizer system</li><li>The stabilizer starts up and appears to reduce shake</li></ul></div><p>Active image stabilization is becoming an increasing part of lens designs. On the positive side, stabilized lenses provide the photographer with more flexibility with non-stabilized lenses. On the other hand, the stabilizer adds an element of potential problems to the lens.</p><p>If the lens has some form of image stabilization, then it’s a good idea to make sure that it works as advertised.</p><p>Testing the full range of functionality of an image stabilizer can be difficult at best. Many stabilized lenses change mode based on how they detect they’re being used, such as when panning or on a tripod. Even lenses that have manual controls or determining mode, it can be difficult to determine whether the stabilizer is working, as it should while also trying to pan the lens.</p><p>Because it’s difficult to fully characterize the IS system without testing equipment, I have to settle for just making sure it seems to work, even this can still be challenging with say a stabilized wide like Nikon’s 16-35mm f/4G VR.</p><p>I take a 2 fold approach to testing the IS system, first is listening for the gyro’s and servos to start up when the IS system is activated—the tell tail click when you first touch the shutter release with an IS lens on the camera.</p><p>The second test is to insure the stabilization system is actually stabilizing. For this, I use the longest focal length available and switch the stabilizer on and off while shaking the camera. When the stabilizer is engaged, there should be a noticeable reduction in shake.</p><p>With respect to testing the IS system, Canon has added a couple of features to the 7D, 5D mark 3 and EOS-1D X that make the testing a little easier. All of these cameras all the DoF preview or M-Fn2  button to be remapped as an IS start button. When configured this way, the IS system will only run when the button is depressed. It makes is markedly easier to switch IS on and off without waiting for the metering timeout.</p><h3>Aperture Functionality<a
href="file:///D:/Points%20in%20Focus/Articles/Buying%20a%20Used%20Lens.docx#_msocom_5"><br
/> </a></h3><div
class="alignright cbox cbox_normal" style="width:200px;font-size:small;"><p><b>Check</b></p><ul><li>Aperture stops down</li><li>Aperture stops down approximately as reported</li></ul></div><p>There are a number of reasons an aperture can fail to operate or operate inconstantly or out of calibration. In the case of modern SLR bodies that meter with the aperture fully opened getting good exposures depends on the aperture reliably stopping down to the configured setting.</p><p>In practice, I can’t say I’ve seen many issues with the aperture not performing properly, but it’s easy enough to test so there’s little point skipping over it anyway.</p><p>To test that the aperture stops down I simply set the lens to the smallest aperture it can use and depress the depth of field preview button while looking in the front of the lens. If the aperture doesn’t close down, something is seriously amiss, if it does then at least it actuates.</p><p>Testing the aperture is really as simple as setting the camera to aperture priority mode and taking a series of images at smaller apertures while maintaining the same exposure value. When looking at the histogram for the images, it should remain largely the same. I do this type of test while shooting at a white or gray target to eliminate the variances depth of field will have on the histogram. Also while stopping down, you can expect, the histogram should tighten up slightly as any vignetting will be reduced, as it does in the images below.</p><table
class="ui-border-none" style="width: 100%;" border="0"><tbody><tr><td><img
class="aligncenter size-thumbnail wp-image-10455" alt="Test Histograms" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-320x256.jpg" width="320" height="256" /></td><td><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-2.jpg" rel="lightbox[1576]"><img
class="aligncenter size-thumbnail wp-image-10457" alt="Test Histograms-2" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-2-320x256.jpg" width="320" height="256" /></a></td></tr><tr><td><img
class="aligncenter size-thumbnail wp-image-10458" alt="Test Histograms-3" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-3-320x256.jpg" width="320" height="256" /></td><td><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-4.jpg" rel="lightbox[1576]"><img
class="aligncenter size-thumbnail wp-image-10459" alt="Test Histograms-4" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-4-320x256.jpg" width="320" height="256" /></a></td></tr><tr><td><a
href="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-5.jpg" rel="lightbox[1576]"><img
class="aligncenter size-thumbnail wp-image-10460" alt="Test Histograms-5" src="http://static1.pointsinfocus.com/2013/03/buying-a-used-lens/Test-Histograms-5-320x256.jpg" width="320" height="256" /></a></td><td></td></tr></tbody></table><p><span
style="line-height: 1.6em;">As I noted at the beginning, the test you need to conduct are weighted by the research you’ve done and the lens you’re buying. I would also reiterate the point that you’re not going to be able to quantify full the performance of a lens in a 5-minute function check before you hand over the cash for it. In the end, buying used gear can be an effective way to get higher quality gear on a smaller budget, it also comes with the risks that the gear may not perform as advertised. However, a careful inspection and function testing, along with buying from a reputable dealer or through a reputable forum can go a long way to minimizing the risks of being stuck with a broken lens and a lighter wallet as well.</span></p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/cameras-lenses/buying-a-used-lens/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>AF Point Registration and Orientation Linked AF Points on Canon Cameras</title><link>http://www.pointsinfocus.com/learning/cameras-lenses/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/</link> <comments>http://www.pointsinfocus.com/learning/cameras-lenses/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/#comments</comments> <pubDate>Mon, 18 Mar 2013 15:00:00 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Cameras & Lenses]]></category> <category><![CDATA[autofocus]]></category> <category><![CDATA[user interface]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=9603</guid> <description><![CDATA[The complete guide to Canon's AF point registration and Orientation Linked AF points for the 6D, 7D, 5D Mk. 3, and all EOS-1D and 1Ds bodies.]]></description> <content:encoded><![CDATA[<p>One trait of modern SLRs is the increasing numbers of AF points in the AF grid. In many ways, more points are definitely a good thing as it minimizes errors with focus and recompose, and provides better tracking information with moving subjects. Unfortunately, large AF grids area somewhat more difficult to navigate quickly compared to their predecessors.</p><p>Canon has introduced a number of measures beyond the traditional mechanism of simply reducing the number of selectable points to assist the photographer in getting the active AF point where they need it quickly. This article will work though two of those mechanisms, Orientation Linked AF points, and AF point registration, describing their utility and configuration.</p><h2>Supported Cameras</h2><table
border="1"><thead><tr><td>Camera</td><td>Orientation Linked AF points</td><td>Registered AF Point</td></tr></thead><tbody><tr><td><a
href="#EOS6D">6D</a></td><td>Yes, 3 orientations</td><td>No</td></tr><tr><td><a
href="#EOS7D">7D</a></td><td>Yes, 3 orientations</td><td>Yes, 1 or 1 per orientation</td></tr><tr><td><a
href="#EOS1DX">5D Mk. III</a></td><td>Yes, 3 orientations</td><td>Yes, 1 or 1 per orientation</td></tr><tr><td><a
href="#EOS1D1-2">EOS-1D<br
/> EOS-1Ds</a></td><td>No</td><td>Yes, 1</td></tr><tr><td><a
href="#EOS1D1-2">EOS-1D Mk. 2<br
/> EOS-1D Mk. 2N<br
/> EOS-1Ds Mk. 2</a></td><td>No</td><td>Yes, 1</td></tr><tr><td><a
href="#EOS1D3">EOS-1D Mk. 3<br
/> EOS-1Ds Mk. 3</a></td><td>No</td><td>Yes, 1</td></tr><tr><td><a
href="#EOS1D4">EOS-1D Mk. 4</a></td><td>Yes, 3 orientations</td><td>Yes, 1 or 1 per orientation</td></tr><tr><td><a
href="#EOS1DX">EOS-1D X<br
/> EOS-1D C</a></td><td>Yes, 3 orientations</td><td>Yes, 1 or 1 per orientation</td></tr></tbody></table><h2>Overview of AF Point Registration and Orientation Linked AF Points</h2><p>Chronologically the first mechanism Canon introduced to deal with increasingly large AF grids was the ability to register a second AF point that the photographer could quickly switch to. This feature first came to market on the EOS-1D and EOS-1v cameras. Canon continued to refine the registered AF point system with subsequent bodies eventually reaching the current design starting with the EOS 7D, and extending that functionality into the EOS 5D Mark III, EOS-1D Mk. IV and EOS-1Dx.</p><p>By registering an AF point, the photographer now has a quick way to move between points without having the thumb-stick of scroll across the AF field.</p><p>This can be put to use in a number of ways, for example if a photographer knows that their subject will be on the right side of the frame, they can select two AF points that will be approximately where they want the subject to be, one for the horizontal frame, and a second for the vertical frame. Then when they switch camera angles, they merely need to switch to the registered AF point and they already have the point where they want it.</p><p>With the EOS 7D, the above-described solution was partially replaced by linking the camera&#8217;s orientation to AF point selection. The camera could be configured to switch automatically to a different AF point when changing the camera&#8217;s orientation. Now instead of having to push a button to activate the other AF point, the change would happen automatically when the camera was rotated.</p><p>In addition to adding the new orientation linked functionality, Canon chose to continue have a mechanism for registering an AF point. In fact, they expanded the registration system to allow the user to register a point for each orientation.</p><p>The AF system in the 7D, 5D Mk. III, EOS-1D X, and EOS-1D C take things a step further by including the AF area selection as part what is stored for the registered AF point. On these bodies, not only can you have AF points conveniently located for expected compositions, but you can also switch from something like a 9-point expanded AF pattern or even automatic AF point selection to a single spot AF point for precise focusing.</p><p>The benefits of this functionality can be tremendous depending on your style of photography. For example, a bird photographer can set their camera up so they can quickly switch from a spot AF point for precisely focusing on a static subject, to a wide AF pattern for quickly acquiring and tracking a bird in flight.<span
style="line-height: 1.6em;"> </span></p><h2><a
name="EOS6D"></a>EOS 6D</h2><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
style="text-align: center;" valign="top" width="319"><em><strong>AF Point Registration</strong></em></td><td
style="text-align: center;" valign="top" width="319"><em><strong>Orientation linked AF points</strong></em></td></tr></thead><tbody><tr><td
valign="top" width="319">No</td><td
valign="top" width="319">Yes, 3 orientations<br
/> (horizontal; vertical, grip down; and vertical, grip-up)</td></tr></tbody></table><p>The EOS 6D only supports orientation linked AF points, and it’s not difficult to see why. Though greatly improved the 6D’s AF system harkens back to the low point count AF systems of the 5D Mk. II, the 60D, and its predecessors. The system simply doesn’t have enough AF points to make navigating the AF grid in a hurry a problem. That said, the camera does retain orientation linked AF points, which is still handy even with the limited number of points for portrait work.</p><p>One nice oddity of the 6D’s more entry-level interface is that the dedicated multi-controller has been replaced by the integrated multi-controller/quick control dial. This change makes direct AF point selection with the multi-controller much more ergonomically friendly when using a battery grip.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">Orientation Linked AF points</span></p><p>Orientation linked AF points are enabled and disabled though the C.Fn II-7 Orientation linked AF point.</p><h3>Custom Functions That Affect AF Point Selection and Registration</h3><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="235"><strong>Custom Function</strong></td><td
valign="top" width="403"><strong>Function</strong></td></tr></thead><tbody><tr><td
valign="top" width="235">C.Fn II-7: Orientation linked AF point</td><td
valign="top" width="403">Enables or disables Orientation Linked AF points. Setting or clearing this will clear the registered AF points.</td></tr></tbody></table><p>&nbsp;</p><h2><a
name="EOS7D"></a>EOS 7D</h2><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319"><em><strong>AF Point Registration</strong></em></td><td
valign="top" width="319"><em><strong>Orientation linked AF points</strong></em></td></tr></thead><tbody><tr><td
valign="top" width="319"><i
style="line-height: 19px;">Yes, 1 point in each orientation</i></td><td
valign="top" width="319">Yes, 3 orientations (horizontal; vertical, grip down; and vertical, grip-up)</td></tr></tbody></table><p>The EOS 7D is the first camera where Canon really got behind the whole customization thing. It was, at its release, the most customizable Canon camera ever released. It also the debut platform for orientation linked AF points and the first non EOS-1 body to have registered AF points.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">Orientation Linked AF Points</span></p><p>Orientation linked AF points are enabled and disabled though C.Fn III-12: orientation linked AF points. To enable orientation linked AF points, select option “1: select different AF points”.</p><h3>Registering an AF Point</h3><p>Like subsequent cameras, the 7D includes AF area mode as part of the registered point. Spot, single, both expansions and 19-point automatic modes can be registered; automatic zone AF mode however is not available with registered AF points.</p><p>Registration starts by selecting the AF area mode and desired AF point in the AF system. To register that point, tap the LCD backlight<span
style="font-size: 13px;"> (</span><img
class="alignnone size-full wp-image-9965" style="vertical-align: text-bottom;" alt="backlight" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/backlight.png" width="32" height="16" /><span
style="font-size: 13px;">)</span><span
style="line-height: 1.6em;"> button</span><span
style="line-height: 1.6em;"> while holding down the AF point select</span><span
style="font-size: 13px; line-height: 1.6em;"> (</span><img
class="alignnone size-full wp-image-9977" style="vertical-align: text-bottom;" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" /><span
style="font-size: 13px; line-height: 1.6em;">)</span><span
style="line-height: 1.6em;"> button</span><span
style="line-height: 1.6em;">. The camera will indicate thsat there’s a registered AF point by displaying the small spot AF box where the registered point is.</span></p><h3>Clearing the Registered AF Point</h3><p>Because the 7D constantly displays the registered AF point in the viewfinder, Canon has provided a mechanism for clearing the registered AF point at will. This is accomplished by tapping the ISO/FEC<span
style="font-size: 13px;"> (</span><img
class="alignnone size-full wp-image-9964" style="vertical-align: text-bottom;" alt="ISO-FEC" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/ISO-FEC.png" width="32" height="16" /><span
style="font-size: 13px;">)</span><span
style="line-height: 1.6em;"> button</span><span
style="line-height: 1.6em;"> while holding the AF point selection</span><span
style="font-size: 13px; line-height: 1.6em;"> (</span><img
class="alignnone size-full wp-image-9977" style="vertical-align: text-bottom;" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" /><span
style="font-size: 13px; line-height: 1.6em;">)</span><span
style="line-height: 1.6em;"> button</span><span
style="line-height: 1.6em;">.</span></p><h3>Using the Registered AF point</h3><p>The 7D started the trend of providing 2 methods of using the registered AF points, a toggle method where the registered AF point becomes the active AF point, and a temporary method where the camera focuses and meters with the registered AF point, but only while a button is held down.</p><p>The configuration of the controls to access the registered AF points is done though C.Fn IV-1: Custom Controls in the menus.</p><p>The following table shows the buttons that can be configured to what</p><table
border="1" cellspacing="0" cellpadding="0"><tbody><tr
style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #000000;"><td
valign="top" width="213">Switch to registered AF point</td><td
valign="top" width="213"><img
class="alignnone size-full wp-image-9960" alt="dof-preview" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/dof-preview.png" width="32" height="16" /> Depth of Field Preview<br
/> <img
class="alignnone size-full wp-image-9963" alt="LENS" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/LENS.png" width="32" height="16" /> LENS*</td></tr><tr><td
valign="top" width="213">Activate registered AF point and start focusing</td><td
valign="top" width="213"><img
class="alignnone size-full wp-image-9962" alt="af-on" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/af-on.png" width="32" height="16" /> AF-ON<br
/> <img
class="alignnone size-full wp-image-9966" style="line-height: 19px;" alt="exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/exposure-lock.png" width="32" height="16" /> Exposure Lock</td></tr></tbody></table><p>* Lens button is available on some super-telephoto lenses.</p><p>For the second case, using the registered point while focusing and metering, it’s necessary to press the info button when the option is highlighted and choose to use the registered AF point, otherwise the camera will focus and meter using the main AF point. It’s also possible with this sub selection to use both the AF-ON and exposure lock buttons to auto focus with the main and registered AF points with the rear button focusing technique.</p><h3>Custom Functions That Affect AF Point Selection and Registration</h3><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="235"><strong><i>Custom Function</i></strong></td><td
valign="top" width="403"><strong><i>Function</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="235">C.Fn III-12: Orientation linked AF point</td><td
valign="top" width="403">Enables or disables Orientation Linked AF points. Setting or clearing this will clear the registered AF points.</td></tr><tr><td
valign="top" width="235">C.Fn IV-1: Custom Controls</td><td
valign="top" width="403">Setup of controls to enable using the registered AF point</td></tr></tbody></table><p>&nbsp;</p><h2><a
name="EOS1D1-2"></a>First &amp; Second Generation EOS-1 bodies</h2><p><strong>(EOS-1D, EOS-1D Mk. II, EOS-1D Mk. IIn,  EOS-1Ds, and EOS-1Ds Mk. II)</strong></p><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319"><strong><i>AF Point Registration</i></strong></td><td
valign="top" width="319"><strong><i>Orientation linked AF points<br
/> </i></strong></td></tr></thead><tbody><tr><td
valign="top" width="319">Yes, 1 Point</td><td
valign="top" width="319">No</td></tr></tbody></table><p>These cameras have a 45-point AF grid, of which by default all 45-points are selectable and can be used as the registered AF point. Neither body supports orientation linked AF points.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">Registering an AF Point</span></p><p>Additionally these cameras allow the number of AF points to be constrained to 11 or 9 of the 45 points by setting C.Fn- 13.</p><p>An AF point is registered by selecting the AF point you want to register by pressing the AF point selection (<img
style="vertical-align: text-bottom;" alt="old-af-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/old-af-point-select.png" width="32" height="16" />) button and using the main and quick-control dials to select the point. Then while holding the assist <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9980" style="vertical-align: text-bottom;" alt="assist-button" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/assist-button.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button</span><span
style="line-height: 1.6em;">, press the flash exposure lock (</span><img
class="alignnone size-full wp-image-9982" style="vertical-align: text-bottom;" alt="flash-exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/flash-exposure-lock.png" width="32" height="16" /><span
style="line-height: 1.6em;">) button.</span></p><h3>Using the Registered AF point</h3><p>By default, switching to the registered AF point is done by pressing both the Assist (<img
class="alignnone size-full wp-image-9980" style="vertical-align: text-bottom;" alt="assist-button" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/assist-button.png" width="32" height="16" />) and AF Point selection (<img
class="alignnone size-full wp-image-9981" style="vertical-align: text-bottom;" alt="old-af-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/old-af-point-select.png" width="32" height="16" />) buttons simultaneously. This behavior can be modified by C.Fn-18 Switch to registered AF point.</p><p>Setting C.Fn-18 to option 1 will switch to/from the registered focus point when only the Assist <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9980" style="vertical-align: text-bottom;" alt="assist-button" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/assist-button.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button </span><span
style="line-height: 1.6em;">is pressed.</span></p><p>Setting C.Fn-18 is set to option 2 the camera will use the registered AF point only while the Assist <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9980" style="vertical-align: text-bottom;" alt="assist-button" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/assist-button.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button</span><span
style="line-height: 1.6em;"> is held down. Additionally if C.Fn-04 is set to either option 1 or 3, the camera will start focusing at the assist point.</span></p><h3>Custom Functions That Affect AF Point Selection and Registration</h3><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="235"><strong><i>Custom Function</i></strong></td><td
valign="top" width="403"><strong><i>Function</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="235">C.Fn-13: Number of AF points/Spot metering</td><td
valign="top" width="403">Controls whether 45, 11, or 9 AF points are selectable and how secondarily whether the spot meter is tied to the selected point</td></tr><tr><td
valign="top" width="235">C.Fn-18: Switch to registered AF point</td><td
valign="top" width="403">Controls the method of activating the registered AF point</td></tr></tbody></table><p>&nbsp;</p><h2><a
name="EOS1D3"></a>Third Generation EOS-1D Bodies</h2><p><strong>(EOS-1D Mk III, EOS-1Ds Mk. III)</strong></p><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319"><strong>AF Point Registration</strong></td><td
valign="top" width="319"><em><strong>Orientation linked AF points</strong></em></td></tr></thead><tbody><tr><td
valign="top" width="319"><i
style="line-height: 19px;">Yes, 1 Point</i></td><td
valign="top" width="319">No</td></tr></tbody></table><p>The 3<sup>rd</sup> generation EOS-1D and EOS-1Ds bodies made major changes to Canon’s professional AF system. While the system retains 45 AF points, only 19 of them are selectable by the user. The remaining 26 points are dedicated assist points. Additionally Canon added the multi-controller that has been on their consumer bodies since the EOS 20D.</p><p>Though the reduced number of selectable AF points and faster selection though the multi-controller contribute to making AF point selection faster, Canon elected to continue to include an AF point registration function, though admittedly the procedure for selecting the AF point is a little less elegant than it was on the previous models.</p><p>Changes to the selectable AF points function made to C.Fn III-9 will clear the registered AF point.</p><p>Any of the 19 user selectable AF points can be set as the registered AF point. In addition, automatic AF point selection can be registered.</p><h3>Registering an AF Point</h3><p>To register an AF point enter the AF point selection mode and set the current AF point to the one you want to register. Then press and hold the AF point select <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9977" style="vertical-align: text-bottom;" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button </span><span
style="line-height: 1.6em;">and tap the ISO </span><span
style="font-size: 13px; line-height: 1.6em;">(</span><img
class="alignnone size-full wp-image-9983" style="vertical-align: text-bottom;" alt="ISO" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/ISO.png" width="32" height="16" /><span
style="font-size: 13px; line-height: 1.6em;">) </span><span
style="line-height: 1.6em;">button</span><span
style="line-height: 1.6em;">.</span></p><h3>Using the Registered AF Point</h3><p>The Mark 3’s offer two mechanisms for selecting the registered AF point. The most prominent is set with C.Fn III 10 Switch to Registered AF point. By setting this custom function to 1: Enable, pressing straight in on the multi-controller will switch between the current AF point and the registered AF point.</p><p>The second option is set though C.Fn III-6, Lens AF stop button function. Option 6: Switch to Registred AF point, allows switching to the registered AF point when the LENS (<img
style="vertical-align: text-bottom;" alt="LENS" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/LENS.png" width="32" height="16" />) button is held and the FEL <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9982" style="vertical-align: text-bottom;" alt="flash-exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/flash-exposure-lock.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button </span><span
style="line-height: 1.6em;">is tapped.</span></p><h3>Custom Functions That Affect AF Point Selection and Registration</h3><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="235"><strong><i>Custom Function</i></strong></td><td
valign="top" width="403"><strong><i>Function</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="235">C.Fn III-6: Lens AF stop button function</td><td
valign="top" width="403">Allows the AF stop button on some super telephoto lenses to be used to select the registered AF point.</td></tr><tr><td
valign="top" width="235">C.Fn III-10: Switch to registered AF point</td><td
valign="top" width="403">Enables the ability to select the registered AF point by pressing the multi-controller straight in.</td></tr></tbody></table><p>&nbsp;</p><h2><a
name="EOS1D4"></a>4<sup>th</sup> Generation EOS-1D</h2><p><strong>(EOS-1D Mk. IV)</strong></p><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319"><strong><i>AF Point Registration</i></strong></td><td
valign="top" width="319"><strong><i>Orientation linked AF points</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="319">Yes, 1 Point in each orientation</td><td
valign="top" width="319">Yes, 3 orientations (horizontal; vertical, grip down; and vertical, grip-up)</td></tr></tbody></table><p>The EOS-1D Mk. IV restored the fully selectable 45-point AF grid to the EOS-1D line, in addition to the registered AF point, the EOS-1D Mk. IV also added Orientation Linked AF.</p><p><span
style="line-height: 1.6em;"> For example, the first and second gen EOS-1D bodies used the Assist button to activate the registered AF point, and the assist button was located both on the main and vertical grips. As a result, it was equally easy to use the registered AF point regardless which grip you were using. The Mark 4 retains the Mark 3’s use of the multi-controller as the switch mechanism, and the multi-controller isn’t easily accessible from the vertical grip. The new selection option, which uses the exposure lock </span><span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9966" style="vertical-align: text-bottom;" alt="exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/exposure-lock.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button </span><span
style="line-height: 1.6em;">to select the registered point while held, is also somewhat limited in use.</span>Though the EOS-1D Mk. IV brings back the much larger selectable AF grid, the registered AF point selection method is largely retained from the 3<sup>rd</sup> generation EOS-1D line. As a result, in many ways the situation is less than ideal in this configuration.</p><h3>Orientation Linked AF Points</h3><p>Orientation linked AF points are enabled by setting C.Fn III-16 (Orientation linked AF point) to option 1, selected different AF point. When the custom function is enabled, the camera will store the active AF point and a registered AF point for each of the 3 available orientations; horizontal, vertical with the main grip at the bottom, and vertical with the main grip at the top.</p><h3>Registering an AF Point</h3><p>AF point registration on the EOS-1D Mk. IV is handed the same way as it was on the Mark 3’s. Enter the AF point selection mode by pressing the AF point select button. Select the point you want to register. Then hold the AF point select <span
style="font-size: 13px;">(</span><img
class="alignnone size-full wp-image-9977" style="vertical-align: text-bottom;" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" /><span
style="font-size: 13px;">) </span><span
style="line-height: 1.6em;">button </span><span
style="line-height: 1.6em;">and tap the ISO (<img
class="alignnone size-full wp-image-9983" style="vertical-align: text-bottom;" alt="ISO" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/ISO.png" width="32" height="16" />) button.</span></p><p>If C.Fn III-16, Orientation linked AF points, is set to enable, then this procedure would need to be repeated for each orientation where a registered AF point is desired.</p><h3>Using the Registered AF point</h3><p>The EOS-1D Mk. IV retained the same two modes for selecting the registered AF point as the preceeding Mark 3’s did as well as adding a 3<sup>rd</sup> option.</p><p>The most accessible option is to use the “middle” button of the multi-controller (i.e. pressing straight in) to switch to the registered AF point. This is set by setting C.Fn III-11 to option 1.</p><p>Setting C.Fn III-11 to the new option 2, will cause the camera to switch to the registered AF point when the exposure lock (<img
class="alignnone size-full wp-image-9966" style="vertical-align: text-bottom;" alt="exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/exposure-lock.png" width="32" height="16" />) button is held down.</p><p>Finally, C.Fn III-6, Lens AF stop button function, can be set to option 6, which allows the AF point to be switched by holding down the AF stop button (found on some super telephoto lenses) and taping the FEL button to switch to the registered AF point.</p><h3>Custom Functions That Affect AF Point Selection and Registration</h3><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="235"><strong><i>Custom Function</i></strong></td><td
valign="top" width="403"><strong><i>Function</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="235">C.Fn III-6: Lens AF stop button function</td><td
valign="top" width="403">Allows the AF stop button on some super telephoto lenses to be used to select the registered AF point.</td></tr><tr><td
valign="top" width="235">C.Fn III-11: Switch to registered AF point</td><td
valign="top" width="403">Enables the ability to activate the registered AF point by pressing the multi-controller or temporarily by holding the exposure lock button.</td></tr><tr><td
valign="top" width="235">C.Fn III-16: Orientation linked AF point</td><td
valign="top" width="403">Enables or disables Orientation Linked AF points. Setting or clearing this will clear the registered AF points.</td></tr></tbody></table><p>&nbsp;</p><h2><a
name="EOS1DX"></a>EOS 5D Mk. III  and 5<sup>th</sup> Generation EOS-1D</h2><p><strong>(EOS-1D X, EOS-1D C)</strong></p><table
class="alignright" style="width: 400px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="319"><strong><i>AF Point Registration</i></strong></td><td
valign="top" width="319"><strong><i>Orientation linked AF points<br
/> </i></strong></td></tr></thead><tbody><tr><td
valign="top" width="319"><i>Yes, 1 Point in each orientation</i></td><td
valign="top" width="319">Yes, 3 orientations (horizontal; vertical, grip down; and vertical, grip-up)</td></tr></tbody></table><p>The EOS-1D X, EOS-1D C and EOS 5D Mk. III all share a remarkably similar AF system. Though the EOS-1D X and 1D C support some advanced features that the 5D Mk. III doesn’t, namely due to their more advanced RGB light meter, the operation of AF point selection and registration is very similar.</p><p>All three of these bodies take the concepts of registered AF points, orientation linked AF points, and end-user customization to the furthest extent of any Canon cameras to date.</p><p><span
style="line-height: 1.6em;">Software enhancements to the AF system also contribute to the functionality of the system. Though beyond the scope of this article, AF point registration and orientation linked AF points store more than just the active point (or auto point selection), but the specific mode the AF system was working in; i.e. single point, single point spot, 4 point expansion, 8 point expansion, and 61-point auto AF modes. The notable exception is that Zone AF cannot be registered.</span>From a physical interface perspective, all 3 of these cameras make strides in making the section of AF points, including the use of registered points more straightforward and easier. Primary to this is the introduction of a second multi-controller for the vertical grip—this is available on both the 1D X and 1D C as well as the BG-E11 grip for the 5D Mk. III.</p><p>It’s now possible to have for example, the normal AF point be an 8 point expanded mode for tracking objects in motion and the registered point be a single spot AF point for accurately focusing on a static subject.</p><p><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;"> Orientation Linked AF Points</span></p><p>The EOS-1DX, 1DC, and 5D Mk. III have abandoned custom functions for configuring AF options, and have instead promoted them to their own top-level menu. Enabling and disabling Orientation Linked AF points are now located under the AF-4 menu (purple). Enabling orientation linked AF points is done by selecting the section option, “Select separate AF points”, form the “Orientation linked AF point” menu entry.</p><h3>Registering an AF Point</h3><p>AF point registration is subtly different between the EOS-1D X and EOS-1D C, and the EOS 5D Mk. III due to the differences in the top panel controls.</p><p>For all three cameras, the first step is to select an AF area selection mode and the AF area or point to be used.</p><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
style="text-align: center;" valign="top" width="319"><strong><i>EOS 5D Mk. III</i></strong></td><td
style="text-align: center;" valign="top" width="319"><strong><i>EOS-1D X, EOS-1D C</i></strong></td></tr></thead><tbody><tr><td
style="padding: 5px; width: 638px;" colspan="2" valign="top">Select an AF point selection mode (Single point, spot AF, AF point expansion, or 61-point Automatic) and the desired AF point (if not using 61-point Auto).</td></tr><tr><td
style="padding: 5px; width: 319px;" valign="top">Tap the backlight button while holding the AF Point selection button.</td><td
style="padding: 5px; width: 319px;" valign="top">Tap the ISO button while holding the AF point selection button</td></tr></tbody></table><p>If the registration is successful, the registered AF point will be indicated by a blinking AF point in the viewfinder.</p><h3>Clearing the Registered AF Point</h3><p>Unlike previous EOS-1D AF systems, the 5D Mk. III, EOS-1D X, and EOS-1D C display the registered AF point in the viewfinder. This can be distracting if it’s not needed, so Canon has provided a mechanism for clearing the AF point without also clearing the camera settings or making a major AF related setting change (i.e. disabling/enabling orientation linked AF points).</p><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
style="text-align: center;" valign="top" width="319"><strong><i>EOS 5D Mk. III</i></strong></td><td
style="text-align: center;" valign="top" width="319"><strong><i>EOS-1D X, EOS-1D C</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="319">Tap the ISO/Flash Exposure Compensation (<img
class="alignnone size-full wp-image-9964" alt="ISO-FEC" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/ISO-FEC.png" width="32" height="16" />) button while holding the AF point selection (<img
class="alignnone size-full wp-image-9977" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" />) button.</td><td
valign="top" width="319">Tap the Exposure Compensation (<img
class="alignnone size-full wp-image-9991" alt="exposure-compensation" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/exposure-compensation.png" width="32" height="16" />) button while holding the AF point selection (<img
class="alignnone size-full wp-image-9977" alt="AF-point-select" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/AF-point-select.png" width="32" height="16" />) button.</td></tr></tbody></table><h3>Using the Registered AF point</h3><p>Unlike prior EOS-1 bodies the 5<sup>th</sup> gen EOS-1 bodies accessing and using the registered AF points have become quite numerous and efficient. All of these settings are configured though the Custom Controls custom function menu.</p><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
style="text-align: center;" colspan="2" valign="top" width="319"><strong><i>EOS 5D Mk. III</i></strong></td><td
style="text-align: center;" colspan="2" valign="top" width="319"><strong><i>EOS-1D X, EOS-1D C</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="213"><p
align="center">C.Fn 2: Custom Controls</p></td><td
colspan="2" valign="top" width="213">Press the quick control ([Q]) button then the select on the custom controls icon.</td><td
valign="top" width="213"><p
align="center">C.Fn 5: Custom Controls</p></td></tr></tbody></table><p>There are two ways to use the registered AF points, toggling between the active/registered AF point and activating it and starting the AF and metering system. The first case is similar to the functionality previously provided on the 3<sup>rd </sup>generation EOS-1D bodies and earlier. The latter option is similar to what you could do on the EOS-1D Mk. IV with the exposure lock button.</p><table
border="1" cellspacing="0" cellpadding="0"><thead><tr><td
valign="top" width="213"><i> </i></td><td
style="text-align: center;" valign="top" width="213"><strong><i>EOS 5D Mk. III</i></strong></td><td
style="text-align: center;" valign="top" width="213"><strong><i>EOS-1D X, EOS-1D C</i></strong></td></tr></thead><tbody><tr><td
valign="top" width="213">Switch to registered AF point</td><td
valign="top" width="213"><img
class="alignnone size-full wp-image-9960" alt="dof-preview" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/dof-preview.png" width="32" height="16" /> Depth of Field Preview<br
/> <img
class="alignnone size-full wp-image-9963" alt="LENS" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/LENS.png" width="32" height="16" /> LENS*</td><td
valign="top" width="213"><img
class="alignnone size-full wp-image-9960" alt="dof-preview" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/dof-preview.png" width="32" height="16" /> Depth of Field Preview<br
/> <img
class="alignnone size-full wp-image-9961" alt="m-fn2" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/m-fn2.png" width="32" height="16" /> M-Fn2<br
/> <img
class="alignnone size-full wp-image-9963" alt="LENS" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/LENS.png" width="32" height="16" /> LENS *</td></tr><tr><td
valign="top" width="213">Activate registered AF point and start focusing</td><td
colspan="2" valign="top" width="426"><img
class="alignnone size-full wp-image-9962" alt="af-on" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/af-on.png" width="32" height="16" /> AF-ON<br
/> <img
class="alignnone size-full wp-image-9966" alt="exposure-lock" src="http://static1.pointsinfocus.com/2013/03/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/exposure-lock.png" width="32" height="16" /> Exposure Lock</td></tr></tbody></table><p>* Available on most super-telephoto lenses.</p><p>For the second case, using the registered point while focusing and metering, it’s necessary to press the info button when the option is highlighted and choose to use the registered AF point, otherwise the camera will focus and meter using the main AF point. It’s also possible with this sub selection to use both the AF-ON and exposure lock buttons to auto focus with the main and registered AF points with the rear button focusing technique.</p><h3>Menu and Custom Functions That Affect AF Point Selection and Registration</h3><table
style="width: 638px;" border="1" cellspacing="0" cellpadding="0"><thead><tr><td
style="text-align: center;" valign="top" width="241"><em><strong>Function</strong></em></td><td
style="text-align: center;" colspan="2" valign="top" width="397"><em><strong>Custom Functions for Camera</strong></em></td></tr><tr><td
valign="top" width="241"></td><td
style="text-align: center;" valign="top" width="199"><em><strong>5D Mk. III</strong></em></td><td
style="text-align: center;" valign="top" width="199"><em><strong>EOS-1D X, EOS-1D C</strong></em></td></tr></thead><tbody><tr><td
valign="top" width="241">Setup of controls to enable using the registered AF point</td><td
style="text-align: center;" valign="top" width="199">C.Fn 2: Custom Controls</td><td
style="text-align: center;" valign="top" width="199">C.Fn 5: Custom Controls</td></tr><tr><td
valign="top" width="241">Enables/Disables Orientation Linked AF points</td><td
style="text-align: center;" colspan="2" valign="top" width="397">AF 4: Orientation linked AF points</td></tr></tbody></table> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/cameras-lenses/everything-you-needed-to-know-about-registered-af-points-in-canon-af-systems/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Adding a Graphic Watermark in Lightroom 4</title><link>http://www.pointsinfocus.com/learning/digital-darkroom/adding-a-graphic-watermark-in-lightroom-4/</link> <comments>http://www.pointsinfocus.com/learning/digital-darkroom/adding-a-graphic-watermark-in-lightroom-4/#comments</comments> <pubDate>Tue, 26 Feb 2013 16:49:24 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Digital Darkroom]]></category> <category><![CDATA[Lightroom]]></category> <category><![CDATA[video]]></category> <category><![CDATA[Watermarks]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=9818</guid> <description><![CDATA[Lightroom 4 has two kinds of watermarks, graphical and text. While text watermarks can do the job, they are simplistic and lack the polish and control a graphical watermark offers—even if the graphic is only text. Creation of a graphic watermark and a preset to easily use it, is simple enough, though there are a [...]]]></description> <content:encoded><![CDATA[<p>Lightroom 4 has two kinds of watermarks, graphical and text. While text watermarks can do the job, they are simplistic and lack the polish and control a graphical watermark offers—even if the graphic is only text. Creation of a graphic watermark and a preset to easily use it, is simple enough, though there are a couple of tips that make things easier and better.</p><h2>The Brass Tacks</h2><ul><li>Create your watermark image in Photoshop or another graphic editor<ul><li>Make sure it’s big enough that it won’t need to be scaled up</li><li>Make sure the background is transparent</li><li>Simplify any color schemes</li><li>Make sure your text has a contrasting border</li><li>Save your watermark image as a 24-bit PNG (PNG-24) with transparency</li></ul></li><li>Create a Watermark to apply to your images on export in Lightroom<ul><li>Open the Watermark Editor (Edit -&gt; Edit Watermarks…)</li><li>In the top right corner where it says Watermark Style, pick “Graphic”</li><li>In the Open File dialog that pops up, navigate to where you saved your watermark image from your image editor</li><li>Adjust the opacity, proportion, inset, and anchor point under Watermark Effects to position the watermark where you want it</li><li>Save your watermark by clicking the save button in the lower right corner of the Watermark Editor window<ul><li>If there is no save button, or you’re updating an existing watermark, use the Save Current Settings as New Preset or Update Preset… options from the dropdown menu in the top left corner of the Watermark Editor.</li></ul></li></ul></li><li>Close the Watermark Editor window, and begin using your watermark when you export images</li></ul><p
style="text-align: center;"><span
style="line-height: 1.6em;"><iframe
width="680" height="383" src="http://www.youtube.com/embed/aoYH_C68igs?feature=oembed" frameborder="0" allowfullscreen></iframe></span></p><h2><span
style="color: inherit; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.4em; font-variant: small-caps; letter-spacing: 2px; line-height: 19px;">Creating the File for the Graphical Watermark</span></h2><p>To create the watermark you’ll need a bitmap editor, like Adobe’s Photoshop, that can save files as 24-bit PNGs with transparency.</p><p>To start you’ll need to create a canvas large enough to be usable without becoming blocky due to resizing. In this case larger is better, but you have to mind the complexity. For example, if you want your watermark to take up 15% of a 22MP image, you’ll want your watermark file to be at least 1000px on a side. For images intended for the web, say a max size of 1000-pixels on the long edge, you probably don’t want to make your watermark less than 200px on its longest edge. However, as I noted, you can use that 1000-pixel print watermark on those web images without any serious issues, but you can’t use a 250-pixel watermark on a big print image without quality problems.</p><h3>The 2-minute Photoshop Walk Through</h3><p>Create a new image in Photoshop. In this case, I’ve picked a 1000x500px canvas size for my watermark, set the background to transparent, and set the color space to sRGB.</p><div
id="attachment_9823" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/new-file-for-watermark-settings.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9823" alt="Watermark image settings." src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/new-file-for-watermark-settings-480x351.jpg" width="480" height="351" /></a><p
class="wp-caption-text">Watermark image settings.</p></div><p>Now create your watermark text and graphics. I would recommend keeping things relatively simple color wise. For a text watermark, using only black, white or grays would be preferable. If you are using an existing logotype, I would simplify the color scheme down to one or two primary colors.</p><p>One key tip here is to make sure that any text has a contrasting border of some sort. White text on a on a very light background, or black text on a dark background, won’t render noticeably, at which point you might as well not have a watermark in the first place. Most of my watermarks to date have used white text, with a black outline, as a drop shadow, outer glow, or stroke.</p><p>You can test the rendering of your watermark over various backgrounds by creating a new layer under your watermark layers, and filling it with some color. At a minimum, I tend to at least test on black and white solids to get an idea how things will render on light and dark backgrounds.</p><p>One final check is to zoom out until the watermark is about the size it would be if you were looking at your images. You’re looking to make sure that you haven’t created a watermark with too much fine detail that will be lost when it’s resized and applied to your images.</p><h3>Saving for the Watermark &#8211; Photoshop</h3><p>When you’re happy with the watermark, you’ve created you need to save it in a compatible format. Lightroom only supports watermarks in PNG or JPEG format, and practically speaking only PNG is useful.</p><p>I find the easiest way to generate a suitable PNG in Photoshop is to use the <b><i>Save for Web</i></b> under the File window. In the Save for Web dialog, choose the preset PNG-24 from the Preset dropdown in the upper right corner. Then double check that the drop down immediately below it says PNG-24. Finally check that the box for transparency is checked.</p><div
id="attachment_9825" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/save-for-web-settings.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9825" alt="Check these settings before saving." src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/save-for-web-settings-480x353.jpg" width="480" height="353" /></a><p
class="wp-caption-text">Check these settings before saving. (click to enlarge)</p></div><p>If all those settings are good, click save and save the file to a folder you can find. I personally like to keep all my Lightroom watermarks in a Lightroom Watermarks folder in my Pictures library since.</p><p>Don’t forget to save your PSD with your watermark as well.</p><h2>Creating the Graphical Watermark</h2><p>In Lightroom for go to the <b><i>Edit</i></b> menu and select <b><i>Edit Watermarks…</i></b> at the bottom of the menu. The Watermark Editor window will open and look something like the screen shot below.</p><div
id="attachment_9820" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/watermark-editor.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9820 " title="Lightroom 4 Watermark Editor" alt="watermark-editor" src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/watermark-editor-480x370.jpg" width="480" height="370" /></a><p
class="wp-caption-text">Lightroom 4 Watermark Editor window. (click to enlarge)</p></div><p>In the upper right corner of the Watermark Editor window, you’ll find a pair of buttons labeled text and graphic. Click on the one that reads Graphic. That will open yet another window, this time a standard Open File dialog box.</p><div
id="attachment_9819" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/type-selection.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9819" alt="type-selection" src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/type-selection-480x370.jpg" width="480" height="370" /></a><p
class="wp-caption-text">Selecting the type of watermark in the Lightroom 4 Watermark Editor window. (click to enlarge)</p></div><p>In the open file dialog box, navigate to where you saved your watermark images from the previous section. Select the file and click open.</p><p>The Open File dialog will disappear and you’ll be returned to the Watermark Editor window, only the default “Copyright” text in the lower left corner of the sample picture will have been replaced with a small version of your watermark graphic.</p><p>Now you just need to adjust the position, size, and opacity of your logo text. These changes are made by manipulating the sliders and buttons in the right column under “Watermark Effects”.</p><div
id="attachment_9821" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/watermark-effects-section.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9821" alt="Adjust the size, position and opacity of the watermark using the Watermark Effects options." src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/watermark-effects-section-480x370.jpg" width="480" height="370" /></a><p
class="wp-caption-text">Adjust the size, position and opacity of the watermark using the Watermark Effects options. (click to enlarge)</p></div><p>Once you&#8217;ve positioned your watermark where you want it, it’s time to save it. If you’re creating a new watermark and the drop down in the upper left corner still reads “Custom”, you can click the save button in the lower right corner of the window. If you’re updating an existing watermark, or making a new watermark based on an existing watermark, you’ll need to click on the drop down in the upper left corner of the Watermark Editor window and choose either “Update Preset ___” or “Save Current Settings as New Preset” respectively.</p><div
id="attachment_9822" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/saving-the-watermark.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9822" alt="Saving the watermark, use either the Save button (lower right) or the drop down (upper left)." src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/saving-the-watermark-480x370.jpg" width="480" height="370" /></a><p
class="wp-caption-text">Saving the watermark, use either the Save button (lower right) or the drop-down (upper left). (click to enlarge)</p></div><p>When saving a new preset, either via the save button or the drop-down menu method, you’ll be prompted to enter a name for your preset. Do so, then click create in the Preset Name dialog that pops up. Finally, click the done button in the Watermark Editor to return to Lightroom proper.</p><p>You can now use your watermark when you export by checking the Watermark check-box in the Watermark section and selecting your watermark preset from the drop-down list.</p><div
id="attachment_9834" class="wp-caption aligncenter" style="width: 428px"><a
href="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/export-dailog.jpg" rel="lightbox[9818]"><img
class="size-medium wp-image-9834" alt="Adding a watermark on export." src="http://static1.pointsinfocus.com/2013/02/adding-a-graphical-watermark-in-lightroom-4/export-dailog-418x480.jpg" width="418" height="480" /></a><p
class="wp-caption-text">Adding a watermark on export.</p></div> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/digital-darkroom/adding-a-graphic-watermark-in-lightroom-4/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Recording your Lighting Setups</title><link>http://www.pointsinfocus.com/learning/better-lighting/setups-the-metadata-your-camera-doesnt-track/</link> <comments>http://www.pointsinfocus.com/learning/better-lighting/setups-the-metadata-your-camera-doesnt-track/#comments</comments> <pubDate>Tue, 13 Nov 2012 20:53:19 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Light & Lighting]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=9283</guid> <description><![CDATA[When trying to recreate a lighting setup for a pick up shot, or even to duplicate an image to keep a consistent look, having a diagram of the lighting setup goes a long way to making your life easier. Here are some of the tips and tools that I've found helpful for doing this.]]></description> <content:encoded><![CDATA[<p>Do you take a picture of your lighting setup? How about making a drawing of it?</p><p>I didn’t, and now I’m starting to realize how much of a good idea it would have been to do this all-along.</p><p>Granted, a record isn’t always required, nor is the same level of detail needed in every situation. For many things, simply taking a photo of the entire set is probably good enough. For other situations, like shooting background plates for chroma-key work, or product setups that need to be repeatable in the future, more detailed measurements and diagrams are needed.</p><p>Like most things in photography, I can’t presume to tell you every situation that you might or might not need a record of the setup. Instead, I’m going to cover some of the tools I use, and the methods I&#8217;ve found useful now that I&#8217;m beginning to redress this aspect of the craft of photography.</p><p><a
href="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/Paper-and-Pencil.jpg" rel="lightbox[9283]"><img
class=" wp-image-9335 aligncenter" title="Paper and Pencil" src="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/Paper-and-Pencil-640x321.jpg" alt="" width="640" height="321" /></a></p><h2>Photos, Diagrams, or Both?</h2><p>A picture may be worth a thousand words, but a diagram&#8217;s few dozen can make it count. How precise your records need to be depends on a lot of factors, such as on how accurately you may need to reproduce the scene and how big or small the scene actually is. A shot of a model with a big softbox to camera right, and a fill card to camera left, may be sufficiently conveyed simply by stepping back and shooting a wide-angle frame that covers the set. On the other hand, something like the product images that I have on my review pages, will definitely require more precise measurements to get accurate reproductions down the road.</p><p>One thing that can never really hurt is to step back and take a “behind the scenes” shot of your setup. It imposes no extra effort and goes right along with the images on the card. Even if you don’t note the flash powers or distances, it makes it a lot faster to replicate things than trying to remember what you did or reverse engineer a finished image.</p><h2>Measuring Stuff</h2><p>First, you don’t really need millimeter accuracy here, even when shooting a green screen background plate or a modest sized stilllife or product on a table. One thing to keep in mind, is that the further and bigger your lights are, and the bigger your subject is, the bigger the variations have to be to change the look.</p><p>I generally measure using the subject as the reference point. It works well when working backwards for guide numbers and flash powers, and generally, everything is pointed towards the subject anyway.</p><p>One measurement that might not be readily obvious is camera height and angle. If you&#8217;re doing a tabletop setup, or VFX background plate, it&#8217;s useful or even necessary to know the height and direction the camera was pointing in the frame. Unfortunately, even with the fancy virtual horizons it seems that our cameras still don&#8217;t log that information in the EXIF data, so you need to record this stuff manually.</p><p>To get camera angles, and really just about any angle of a surface, I use the levels in <a
href="https://itunes.apple.com/us/app/ihandy-carpenter/id293621500?mt=8">iHandy Carpenter</a> on my iPhone. When getting the angles for a camera, I won’t try and measure something on the camera, instead I’ll simply pull the camera off the tripod’s QR clamp and measure the angle that’s sitting at.</p><div
id="attachment_9339" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/iHandy-Carpenter-Surface-Level.jpg" rel="lightbox[9283]"><img
class="size-medium wp-image-9339" title="iHandy Carpenter Surface Level" src="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/iHandy-Carpenter-Surface-Level-480x384.jpg" alt="" width="480" height="384" /></a><p
class="wp-caption-text">iHandy Carpenter Surface Level</p></div><p>Additionally, iHandy Carpenter has a convenient hold button so don&#8217;t have to balance precariously your phone on your tripod while writing things down. I have no idea how accurate the level actually is, it seems about on par with its indication with the 3’ framing level I tested it against. That said, since it uses the calibration of your phones accelerometers, the accuracy can vary from phone to phone and possibly day to day.</p><h2>Drawing the Diagram</h2><p>Honestly when it comes to sketching and note taking, I find there&#8217;s no actual substitute for paper and a pencil. I’ve tried, at various times, various digital solutions; from Wacom enabled TabletPCs to capacitive styluses on my iPad. To me they all suck, especially the capacitive styluses on a touch screen tablet. Some of this comes down to feel, some accuracy, and some just frustrations in the operation.</p><p>Having said that, I do have a stylus for my iPad, mine is <a
href="http://www.amazon.com/dp/B0041D0K1Q/?tag=poiinfoc-20">this Griffin one</a>. I haven&#8217;t tested many others, but I&#8217;m going to go out on a limb here and say they&#8217;re all probably pretty much the same. Some may be smoother, some will be bigger or smaller, but they all tend to have a pointy end that&#8217;s about the same size and as squishy.</p><p>I got the stylus because I was starting to use <a
href="https://itunes.apple.com/us/app/penultimate/id354098826?mt=8">Evernote&#8217;s Penultimate</a> to jot down notes and ideas without carrying around a pad of paper. I mention this, because Penultimate is certainly capable of being used to keep track of your lighting and camera setups. One thing with Penultimate is that to get palm detection to work, you have to turn off Multitasking Gestures; even then, the palm detection isn’t 100% accurate.</p><div
id="attachment_9334" class="wp-caption aligncenter" style="width: 650px"><a
href="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/IPad-Stylus-Penultimate.jpg" rel="lightbox[9283]"><img
class="size-large wp-image-9334" title="IPad, Stylus, Penultimate" src="http://static1.pointsinfocus.com/2012/11/setups-the-metadata-your-camera-doesnt-track/IPad-Stylus-Penultimate-640x512.jpg" alt="" width="640" height="512" /></a><p
class="wp-caption-text">Slick and techy, sketching on the iPad with Penultimate and a stylus.</p></div><p>I tried <a
href="https://itunes.apple.com/ca/app/strobox/id339112815">Strobox</a> some time back, but found the UI somewhat clunky and the lack of a native iPad app that uses the full iPad screen ended up turning me off from it.</p><h2>Storing, Orginzigin and Linking Setups to Images</h2><p>In a way, the biggest trick here is tying setups to images. Unfortunately, since I’m writing this from a “why didn’t I do this” perspective, and not an “I’ve done this already” one, this section is more speculative than practiced advice.</p><h3>Storing Setups Diagrams</h3><p>In a way, this is more of a filing problem than anything else. My first thought on this is to leverage Lightroom. It already catalogs my images, and it and my images are already backed up so there’s less administrative overhead to the whole thing than there would be otherwise. Never mind there’s little need to set anything else up.</p><p>On the other hand, Lightroom doesn’t play well with all image formats. For example, it won’t import PNGs, which is what software such as Penultimate produces when you export a copy of what you’ve drawn. Sure, you can convert them to TIFFs or JPEGs, but that’s more work. Of course, if you’re scanning hand drawn images, this isn’t so much of an issue since you can scan to whatever format you want.</p><p>My second though was to use a wiki program, like MediaWiki, to handle the setups; as a nice bonus you can handle just about anything else, like model releases, there as well. Of course, in some ways this is only really a consideration for me because I already have a computer with the necessary software to do that and I’ve set them up before. If you haven’t, this isn’t probably as good of an idea as it seems to me.</p><p>Of course there are other options but these are the two I’ve considered so far. Right now, I’m leaning towards keeping everything in Lightroom; simply because it’s less for me to manage.</p><h3>Linking Images to Setups</h3><p>The second problem is linking the images to their setups. What I think I want to do here eventually is write a custom plugin to give me the links and a quick way to jump to the linked image. Until then, I’ve decided to repurpose an existing metadata field to store the setup reference. I settled on the user comment EXIF field, since it doesn’t change the meaning of the field in any way, and none of my cameras records anything there anyway.</p><p>If you’re not into making custom Metadata Field Lists, the user comment field is found on the EXIF, and EXIF &amp; IPTC lists for the Metadata panel. If you are, you’ll need to add the field “com.adobe.userComment” to your field list to get the field to show up.</p><p>This method doesn’t provide a quick “link” arrow but it does store the data. I am currently looking into writing a plug-in to make this a click-able link, but it’ll be a while before I work that out.</p><p>Whether or not you record your setups is obviously a personal choice. I&#8217;ve found that if there&#8217;s a chance I may need to recreate that specific setup, a diagram goes a long way towards making my life easier.</p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/better-lighting/setups-the-metadata-your-camera-doesnt-track/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Basics of Building DIY with PVC</title><link>http://www.pointsinfocus.com/learning/diy/fundamental-diying-it-in-pvc/</link> <comments>http://www.pointsinfocus.com/learning/diy/fundamental-diying-it-in-pvc/#comments</comments> <pubDate>Sat, 27 Oct 2012 04:20:52 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[DIY]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=9211</guid> <description><![CDATA[PVC is one of many potential materials for DiYing together light shaping tools such as scrims and soft-boxes. With a little understanding of the basics, you can go a long way towards creating your own designs to meet your exact needs.]]></description> <content:encoded><![CDATA[<p>In a way I&#8217;ve always disliked the DIY articles that presume the reader is too stupid to figure out how to design something to meet there needs. Sure, having measurements and assembly instructions are nice. However at the same time, having a working understanding of the tricks that make a design work can be just as good. After all, if you need a 48&#215;48&#8243; scrim, you can just cut the lengths of pipe to 48&#8243; instead of whatever the design specified.</p><h2>Tools</h2><p>You can cut PVC pipe with just about any kind of saw, but there are a number of things that go a long way towards making things go faster and produce cleaner cuts and less mess to clean up. For cutting PVC pipe, I use a <a
href="http://www.amazon.com/dp/B002MR91N6/?tag=poiinfoc-20">ratcheting PVC Pipe cutter</a> similar to the one linked. They also come in <a
href="http://www.amazon.com/dp/B000GIUHFO/?tag=poiinfoc-20">smaller sizes</a>, and in <a
href="http://www.amazon.com/dp/B00140VWZM/?tag=poiinfoc-20">single stroke</a> types. Unlike a saw, these leave smooth clean cuts and produce no &#8220;sawdust&#8221; at all.</p><p>That said, a while the pipe cutter is by far the best tool for cutting pipe to length, a hacksaw is far from useless. In fact, it&#8217;s necessary for one of the techniques I&#8217;m going to describe in a few moments. That said, when it comes to buying a hacksaw, the difference between a good one that won&#8217;t piss you off constantly and a bad one that will is $5-10 dollars, and it&#8217;s well worth it for the difference.<span
id="more-9211"></span></p><div
id="attachment_9234" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/PVC-Pipe-Cutter.jpg" rel="lightbox[9211]"><img
class="size-medium wp-image-9234" title="PVC Pipe Cutter" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/PVC-Pipe-Cutter-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Ratching PVC pipe cutter.</p></div><p>As a brief aside about hacksaws, the obvious question is what separates a good hacksaw from a bad one? The answer is quite simply, how the blade is mounted. All hacksaws, at least all hacksaws worth talking about, have replaceable blades held by some tension system. The bit that separates a good saw form a bad one is whether that tensioning system allows the blade to rotate or not.</p><div
id="attachment_9219" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Hacksaws.jpg" rel="lightbox[9211]"><img
class=" wp-image-9219" title="Hacksaws" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Hacksaws-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">The two hacksaws shown here depict the traits of a generally solid well performing hacksaw (bottom) and one subject to blade twist (top). These designs differences aren&#8217;t necessarily brand specific and may vary from model to model even in a given brand.</p></div><p>If you look closely the saw with the red handle simply secures the blade with a wing nut on a bolt, and in this saws case, there&#8217;s nothing to keep the blade from rotating around its axis. As opposed to the older gray saw, where the blade is tensioned by pulling on the cammed front end. That&#8217;s not to say that all saws that follow the design of the top one are bad, but I&#8217;d definitely check to make sure the blade won&#8217;t rotate in the holding assembly.</p><p>While I haven&#8217;t used them personally, <a
href="http://www.amazon.com/dp/B000UOCE50/?tag=poiinfoc-20">this</a> on the low end $10 or <a
href="http://www.amazon.com/dp/B0037NBSEY/?tag=poiinfoc-20">this</a> at $30 on the high end would both be examples of hacksaws that don&#8217;t appear to allow the blade to rotate.</p><p>The final tool that&#8217;s somewhat invaluable for DIYing, even with PVC, is a decent 4&#8243; or 5&#8243; bench vice.</p><p>Other handy, but not strictly necessary tools include files, rasps, tape measures,</p><h2>Joints</h2><p>If you&#8217;re like me and building your PVC projects in the white plumbing PVC pipe, you&#8217;ll have basically 3 options for pipe end joints. Unglued slip joints, glued slip joints and threaded joints.</p><p>From my perspective threaded joints are perhaps the least useful, they&#8217;re certainly my least used option.  That said, they have pretty good structural strength and can be connected and disconnected easily. That said, more often than not for this type of work, you&#8217;ll need to glue thread adapters to the ends of un-threaded pipes to make it work.</p><p>Slip joints are the standard kind of PVC connection. When glued with PVC cement, they become effectively part of the pipe. Glued slip joints are good under compression, tension and torsion (twisting).</p><p>Unglued slip joints are only truly solid under compression, under tension they simply come apart. Under torsion the behavior depends on how you&#8217;re using them and how many joints there are that need to be rotated.</p><p>For example a simple rectangular scrim frame (4 pipes and 4 90s) can be held together by the compressive force of the fabric under tension without any real need to glue it. Even more complex structures can survive to some degree on the friction of the fittings alone.</p><p>The other application for unglued slip joints is to exploit the lack of torsional strength and use them as pivots to rotate your structure around.</p><div
id="attachment_6190" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2011/04/diy-scrim/Scrim-parts.jpg" rel="lightbox[9211]"><img
class="size-medium wp-image-6190" title="Scrim parts" alt="" src="http://static1.pointsinfocus.com/2011/04/diy-scrim/Scrim-parts-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">The parts for my DiY <a
href="/learning/diy/diy-scrim/">Scrim Frame</a></p></div><p>An example of this are the small L shaped pieces in the bottom right of the above image. The fit into the tees in the top two pieces to allow the scrim to be supported on a pair of light stands. By not being glued, the scrim can be rotated around them to adjust the angle.</p><p>That said a completely unglued DIY builds aren&#8217;t really a good idea, largely because it becomes easy to lose parts and because it&#8217;s far to easy to deform the structure or have it come apart.</p><h2>Clips and Clamps</h2><p>I won&#8217;t even being to present this as my own ideas. The perhaps seminal work in DiY PVC photography stuff is the book Tinker Tubes by Dean Collins. Software Cinema has <a
href="http://www.software-cinema.com/page/13/tinkertubes">republished it in PDF format</a> (the low resolution version is free, the high resolution version costs $20).</p><p>Basically, Dean&#8217;s system boils down to two kinds of clamps; light duty clamps made from schedule 125 pipe of the same diameter as your main tube, and heavy duty clamps made from schedule 40 pipe one size larger. So if you&#8217;re working with 3/4&#8243; PCV—what I use—then your light duty clamps are 3/4&#8243; schedule 125 pipe, and your heavy duty clamps are 1&#8243; schedule 40 pipe.</p><div
id="attachment_9224" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/clip-types.png" rel="lightbox[9211]"><img
class=" wp-image-9224" title="PVC Clip Types" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/clip-types-480x254.png" width="480" height="254" /></a><p
class="wp-caption-text">Approximate profile for cutting light and heavy duty clips.</p></div><p>For the light duty clamps you&#8217;ll need the PVC pipe cutter and a pair of heavy duty scissors—or you can use the hacksaw. Simply cut 1-1/2&#8243; to 2&#8243; sections of the schedule 125 pipe, and then clip out about 90° worth of material on one side. For the pipe I use, that usually works out to removing the writing on it plus about an 1/8th inch of extra material. The schedule 125 pipe is thin enough that you can generally cut it with heavy duty scissors or shears, which makes this real easy to make.</p><div
id="attachment_9229" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Light-Duty-Clamps.jpg" rel="lightbox[9211]"><img
class="size-medium wp-image-9229" title="Light Duty Clamps" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Light-Duty-Clamps-480x319.jpg" width="480" height="319" /></a><p
class="wp-caption-text">Light duty clamps for 3/4&#8243; pipe, cut from 3/4&#8243; Schedule 125 pipe.</p></div><p>Heavy duty clamps follow the same basic idea. start with a 1-1/2&#8243; to 2&#8243; piece of schedule 40 pipe and remove about 135° worth of material from one side.</p><p>With the basics down, you can start manufacturing more sophisticated clips simply by applying the above. A double clip, for example, just involves gluing two single clips back to back—filing the tops each piece smooth to insure a good bond.</p><p>Likewise you can build a T-clip by gluing the two short sections of pipe into a t-fitting and then cutting the gap once the glue has dried. T-clips should always be made using the heavy duty materials, i.e. a T-chip for a 3/4&#8243; frame would use 1&#8243; schedule 40 PCV and a 1&#8243;x1&#8243;x3/4&#8243; tee.</p><table
class="ui-border-none" border="0"><tbody><tr><td><div
id="attachment_9220" class="wp-caption aligncenter" style="width: 330px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Tee-Clips.jpg" rel="lightbox[9211]"><img
class="size-thumbnail wp-image-9220" title="Tee-Clips" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Tee-Clips-320x256.jpg" width="320" height="256" /></a><p
class="wp-caption-text">Examples of a heavy duty T-clip using a 1&#8243;x1&#8243;x3/4&#8243; Tee (uncut but glued assembly shown standing on end)</p></div></td><td><div
id="attachment_9221" class="wp-caption aligncenter" style="width: 330px"><a
href="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Tee-Clips-2.jpg" rel="lightbox[9211]"><img
class="size-thumbnail wp-image-9221" title="Tee-Clips" alt="" src="http://static1.pointsinfocus.com/2012/10/fundamental-diying-it-in-pvc/Tee-Clips-2-320x213.jpg" width="320" height="213" /></a><p
class="wp-caption-text">Cutaway side of a heavy duty T-clip showing the glued pipe sections inserted into the larger tee.</p></div></td></tr></tbody></table><p>I cut these T-clips using a hacksaw and a bench vice, and all told it took maybe 5 minutes a clip to cut the bottoms off. The process can be done without a bench vice, but a means of clamping them down is certainly necessary. A rotary tool (like a Dremel, or an angle grinder) with a cutoff disk may help if you have to improvise a clamping solution.</p><p>So far in my work, I&#8217;ve only needed light duty single clips and heavy-duty T-clips but then again my focus isn&#8217;t on building free standing PVC structures either, everything I&#8217;ve designed has been designed to work on traditional light/C stands and collapse for compactness.</p><h2>Thinking about Designs</h2><p>Of course you can go though life simply copying other people&#8217;s plans, and doing so certainly is expedient. On the other hand, if you work up your own designs you can get exactly what you need for any given project.</p><p>If collapsibility isn&#8217;t necessary, and therefore all joints can be glued, then you can get away with a lot more than you can if you intend to make things collapsible, simply because glued joints have significantly fewer potential problems than unglued ones.</p><p>If, on the other hand, you&#8217;re objective is to make something collapse able you have to start thinking about how forces may affect the structure around those joints where it can rotate or otherwise pull apart. Fortunately you don&#8217;t have to do finite element analysis or even draw force diagrams or something engineering-y like that. Instead, given that PVC is cheap you can try it and see where and how it fails and glue accordingly.</p><p>That said, I&#8217;ve found a couple of useful shortcuts to dealing with the frame.</p><p>First, and most obviously, the more joints you have resisting a motion, the more force it takes to move the system that way. My DiY 28&#215;34 softbox is still completely unglued while I figure out the final details, and there&#8217;s enough resistance to torsion and tension from all the joints resisting motion in basically the same direction that it&#8217;s amazingly solid even in it&#8217;s unfinished state.</p><p>Secondly, wherever possible center your pivot points along the center of gravity for the axis they&#8217;ll rotate. For a symmetric structure that&#8217;s easy, you just put it half way between the front and back, for an asymmetric one it can be a bit more challenging. Fortunately, you don&#8217;t have to be super precise either. If you&#8217;re really unsure, you can always work out a clamp of sorts similar to the friction knobs used on yoked lights.</p><p>When you&#8217;re partially gluing an assembly, consider how the structure may flex and the corners could rotate. For example a scrim frame where a 90° elbow was glued to each length of pipe could still twist out of square However, glue those same 90s to opposing sides, and the ability for the frame to twist is greatly reduced. That said, don&#8217;t over estimate your load or underestimate your pipe.</p><p>In the end PVC is a wonderful tool for DiYing things, it&#8217;s cheap, easy to cut and assemble, and fairly strong for the the weight. Granted the PVC skeleton only gets you so far in the process, turning that basic skeleton into a practical light shaping tool does require some sewing ability. In the end if you have more time than money, PVC and some fabric can go a long way towards filling the voids for large scale light modifiers for the zero-budget photographer—at last if you have the skills to execute them.</p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/diy/fundamental-diying-it-in-pvc/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Lets Talk Budget Video Lighting</title><link>http://www.pointsinfocus.com/learning/better-lighting/lets-talk-budget-video-lighting/</link> <comments>http://www.pointsinfocus.com/learning/better-lighting/lets-talk-budget-video-lighting/#comments</comments> <pubDate>Tue, 02 Oct 2012 20:50:13 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Light & Lighting]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=9111</guid> <description><![CDATA[I originally wanted to call this zero-budget lighting, but then I realized it’s silly to work on that premise. There is one useful zero-budget light source, the sun, for everything else you need to spend some money or scrounge something that cost someone else money. That&#8217;s not to say you can’t go some way on [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><a
href="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/Budget-Lights.jpg" rel="lightbox[9111]"><img
class="size-medium wp-image-9112 aligncenter" title="Budget Lights" alt="" src="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/Budget-Lights-480x319.jpg" width="480" height="319" /></a></p><p>I originally wanted to call this zero-budget lighting, but then I realized it’s silly to work on that premise. There is one useful zero-budget light source, the sun, for everything else you need to spend some money or scrounge something that cost someone else money. That&#8217;s not to say you can’t go some way on a small budget, but there needs to be a budget none the less. Simply put, I think if you have any aspiration of producing something with a decent production value, you have to spend at least a few dollars on lights, and that’s what I want to talk about here.</p><p><span
id="more-9111"></span></p><h2>“Pan” Work-lights</h2><p>At the very bottom of the barrel, are the home-improvement-store clamp-on “pan” work-lights. They are cheap—mine cost me all of $5 apiece—produce light, and in a way that’s all that really matters. However, like most things, you get what you pay for; compared to higher tier lights, they have poor reflectors, no handles, short cords, and typically low power ratings. Some of those shortcomings can be worked around, sometimes easily, others not so much.</p><div
id="attachment_9113" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/8-Work-Light.jpg" rel="lightbox[9111]"><img
class="size-medium wp-image-9113" title="8 inch Work Light" alt="" src="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/8-Work-Light-480x348.jpg" width="480" height="348" /></a><p
class="wp-caption-text">The typical 8&#8243; work light, painted black to look more professional.</p></div><p>For example, fixing the short cord. The sockets in most if not all of these kinds of lights, can be disassembled simply by unscrewing, and the cord replaced with a suitable lamp cord and plug assembly of whatever length is needed. Or, you can just plug them in to an extension cord and be done with it.</p><p>Or consider the reflectors. They simply aren’t designed to produce an even beam. However, you can always whack a bit of heat resistant diffusion over the fixture, or remember always to use a frosted lamp instead of a clear one.</p><p>Even the lack of a handle can be worked around.</p><p>That said, the real problem in my opinion, is the inability to handle high power lamps safely. A 100W or 150W lamp may be perfectly passable for a tabletop still setup but my experience is that you need at least two times more than that for a key light for a video production. The simple reality is you need light, and lots of it, or you have to settle for highs ISOs and very shallow depth of field.</p><p>All that said, for $5 apiece, the hardware store pan lights are a decent, but not perfect, solution. I used them for a quite a while for still photography when I was first getting started, and they came back out when I first started playing with video. They’re certainly good to have, but they’re best used as background or accent lights.</p><h2>Smith-Victor Adapta Lights</h2><p>Taking a step further up the lighting pyramid, you have something like Smith-Victor’s Adapt Lights—or in my case Smith Victor’s Adapta Lights. In a way, they’re just overgrown hardware store lights, with a slightly bigger price tag—sort of. What your $35-45 buys you is a reflector designed to even out the beam and attach accessories, and a lamp holder rated and tested to accept 250W or 500W incandescent lamps.</p><div
id="attachment_9114" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/Smith-Victor-A10UL.jpg" rel="lightbox[9111]"><img
class="size-medium wp-image-9114" title="Smith Victor A10UL" alt="" src="http://static1.pointsinfocus.com/2012/10/lets-talk-budget-video-lighting/Smith-Victor-A10UL-480x343.jpg" width="480" height="343" /></a><p
class="wp-caption-text">A Smith Victor A10UL., from the 1970s or 1980s as they are now painted black. Even having been around all that time, the reflector and cord set are still in good condition.</p></div><p>The first part of the story is power. The Adapta-Lights are tested and UL listed to handle 250W lamps, with some listed for 500W lamps. Better yet, they stay manageable at those powers thanks to a handle for reaming them that stay’s cool.</p><p>The second factor is quality of light. Simply put the reflectors in the Adapta Lights are much better at evening out the beam from even a clear lamp than the hardware store lights are. Though there is still a hot spot to some degree, the falloff is much smoother and better controlled.</p><div
class="snip-wrapalignleft" ><div
class="tabs cf"><div
id="al1"><div
id="attachment_9120" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Adapta-Light-beam-spread-1.jpg" rel="lightbox[9111]"><img
src="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Adapta-Light-beam-spread-1-480x319.jpg" alt="" title="Adapta Light beam spread 1" width="480" height="319" class="size-medium wp-image-9120" /></a><p
class="wp-caption-text">Adapta Light with clear lamp.</p></div></div><div
id="al2"><div
id="attachment_9122" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Adapta-Light-beam-spread-2.jpg" rel="lightbox[9111]"><img
src="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Adapta-Light-beam-spread-2-480x319.jpg" alt="" title="Adapta Light beam spread 2" width="480" height="319" class="size-medium wp-image-9122" /></a><p
class="wp-caption-text">Adapta Light with frosted lamp.</p></div></div><div
id="hsl1"><div
id="attachment_9121" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Hardware-store-light-beam-spread-1.jpg" rel="lightbox[9111]"><img
src="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Hardware-store-light-beam-spread-1-480x319.jpg" alt="" title="Hardware store light beam spread 1" width="480" height="319" class="size-medium wp-image-9121" /></a><p
class="wp-caption-text">Hardware store fixture with clear lamp.</p></div></div><div
id="hsl2"><div
id="attachment_9123" class="wp-caption aligncenter" style="width: 490px"><a
href="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Hardware-store-light-beam-spread-2_.jpg" rel="lightbox[9111]"><img
src="http://static1.pointsinfocus.com/2012/10/budget-light-patterns/Hardware-store-light-beam-spread-2_-480x319.jpg" alt="" title="Hardware store light beam spread 2" width="480" height="319" class="size-medium wp-image-9123" /></a><p
class="wp-caption-text">Hardware store fixture with frosted lamp.</p></div></div><ul
style="width:480px; margin:0 auto;"><li
style="width:118px"><a
href="#al1">Adapta Light w/ clear lamp</a></li><li
style="width:118px"><a
href="#al2">Adapta Light w/ frosted lamp</a></li><li
style="width:118px"><a
href="#hsl1">Hardware store light w/ clear lamp</a></li><li
style="width:118px"><a
href="#hsl2">Hardware store light w/ frosted lamp</a></li></ul></div></div><p>Then there’s the line of accessories designed to mound directly to the reflector, from scrims to diffusers, to barn doors. All of which are fairly reasonably priced.</p><p>To me the real question comes down to production value. The hardware store work lights are cheap, and that’s a quantity that’s hard to beat. On the other hand, the Adapta Lights being designed for photo and video work are ever so slightly better and actually having the little touches that make things that much easier.</p><p>As far as lights go, either the hardware-store pan lights or the Adapta Lights are essentially 0 budget items. The difference really comes down to how much you can get out of them in terms of production value. Being able to safely handled 2 to 4 times more power means I’m not forced to shoot up in the ISO 3200 range but can drop down to 1600 or 800, which makes a difference. Moreover, the smoother beam means that if I have to shoot with lamps from the hardware store, I don’t have to care whether I can get frosted lamps at high wattages.</p><h2>The Next Step Up</h2><p>The next step up is to invest a couple of bucks into a real video/cinema light. On the low end, there are tons of choices.</p><p>Ryan Connolly, of <a
href="http://revision3.com/filmriot">Film Riot</a> fame has shown and uses fixtures from Lowel. Lowel’s Omni-light provides a reasonable 500W source with a handle and variable beam from 16° to 53° for around $170-200. Industry giant Arri has a line of location Fresnels with powers from 150W to 650W and beam angles from 15° to 55°, priced between $280 and $380. On a slightly tighter budget, Smith Victor has a 600W fixed focus halogen lamp, that runs $130, and a variable focus one with a 22° to 36° beam for $141.</p><p>Moreover, all these halogen lamps turn out to be ever so slightly cheaper on the consumable side, as their lamps are generally rated for 100-200 hours of operation, compared to the 20-60 hours you can expect from the photo incandescent lamps.</p><p>Unfortunately, I haven’t made this jump yet, so I don’t have much to say about any of these specifically.</p><h2>Budget Drawbacks</h2><p>The real downside to budget lighting is heat. The simple reality is that video takes a lot of light, and incandescent lamps radiate most of their power as heat, technically infrared light, not visible light. Regardless of how well designed the lamp housing is at keeping itself cool, the subject is still in front of a good deal of IR producing lights, and will get hot.</p><p>To make matters worse, florescent lamps aren’t readily available at powers much higher than 150 equivalent watts. To get decent power levels, manufacturers pair multiple lamps in a single fixture. Likewise, I’ve yet to find a photographic LED source that can be screwed into an Edison base lamp fixture.</p><p>In the end, I think the best budget lighting kit draws a little from the various available sources—for example, lots of cheap hardware store fixtures for the background lights and a good fixture for the key light—especially given the number of fixtures you&#8217;ll probably find you need to light anything decently.</p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/better-lighting/lets-talk-budget-video-lighting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Profile of the Least Tern</title><link>http://www.pointsinfocus.com/learning/biology-and-behavior/profile-of-the-least-tern/</link> <comments>http://www.pointsinfocus.com/learning/biology-and-behavior/profile-of-the-least-tern/#comments</comments> <pubDate>Sun, 22 Jul 2012 03:43:10 +0000</pubDate> <dc:creator>V. J. Franke</dc:creator> <category><![CDATA[Wildlife Behavior & Locations]]></category> <category><![CDATA[behavior]]></category> <category><![CDATA[birds]]></category> <category><![CDATA[Green Cay wetlands]]></category> <category><![CDATA[Wakodahatchee wetlands]]></category> <category><![CDATA[wildlife]]></category> <guid
isPermaLink="false">http://www.pointsinfocus.com/?p=1389</guid> <description><![CDATA[Some tips on finding and photographing the Least Term (Sterna antillarum) the samllest of the Term species found in North America.]]></description> <content:encoded><![CDATA[<p>There are few seabirds I like better than Terns. They have clean lines, are generally approachable if you do it right, and make for great sport photographing while in flight, especially the smaller ones. In Florida several species of Terns visit us seasonally. In the winter, many of Florida&#8217;s west coast beaches, especially the less populated ones, can have sizable colonies of Royal and Sandwich Terns, among others.</p><div
id="attachment_10868" class="wp-caption aligncenter" style="width: 650px"><a
href="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-2.jpg" rel="lightbox[1389]"><img
class="size-large wp-image-10868" alt="Least Tern" src="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-2-640x426.jpg" width="640" height="426" /></a><p
class="wp-caption-text">Least Tern</p></div><p>However, they aren&#8217;t the only species of tern that visits south Florida. In the late spring and early summer the smallest verity of North American Terns, the Least Tern begins to appear to nest. Even better, they can be reliably found in reasonable numbers at easily accessible wetland areas like Wakodahatchee and Green Cay.</p><p>The Least Tern, Sterna antillarum, is small, growing to about 9&#8243; from tip to tail, with a wingspan of 20&#8243;. They follow the general tern shape and have long narrow wings, a long slightly decurved tapered bill, a short tail and yellow legs.</p><p>They are easily identifiable, as the smallest white-gray tern in North America.</p><p>Adult Least Terns have white underpants, and gray upperparts and wings. All Least Tern plumage variations have a black cap, black eye-line and white forehead.</p><p><span
id="more-1389"></span></p><p>Juveniles from July to September can be identified by their brownish barring on their backs and upper wing coverts. The base of a juvenile Least Tern&#8217;s bill is flesh or yellow colored.</p><div
id="attachment_10865" class="wp-caption alignright" style="width: 223px"><a
href="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-4.jpg" rel="lightbox[1389]"><img
class="size-thumbnail wp-image-10865 " alt="Least Tern" src="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-4-213x320.jpg" width="213" height="320" /></a><p
class="wp-caption-text">Least Tern</p></div><p>During their first winter, young Least Terns undergo extensive molting and develop the majority of their adult plumage, loosing the barred upperparts for solid gray. However, they retain dark patagial bar and our primaries until their first summer.</p><p>Least Terns molt into their alternate or breeding plumage during their second alternate molt. The plumage varies slightly from the adult basic plumage in several key ways. They develop a solid black cap and their eye-line extends to the base of their bill, forming a white chevron shaped forehead. The gain two dark primaries on their wings and their bills turn distinctively yellow.</p><p>Least Terns breed on open beaches, mudflats or salt flats in the summer placing them in competition with people for breeding locations. As such, Least Tern populations are declining over much of their range. The ICUN considers them as a species of least concern, however many states where they breed have consider them a threatened species.</p><p>Nests are built as scrapes in sand, soil or pebbles in areas that have little or no vegetation. There have been reports that some Least Terns colonies in some Florida counties have adapted to diminishing habitat by building nests on gravel rooftops. In most areas, nest building begins in late may and is completed by mid June.</p><p>Least Terns typically lay a single clutch of two to three eggs, but may lay a second clutch if the first one is lost. Late season clutches (relays and late arriving birds) tend to be smaller than early season clutches. Both Least Tern parents incubate the nest during the approximately 3 week long incubation period.</p><p>Least tern chicks are semi-precocial, meaning they have features including open eyes, down and the capacity to leave the nest but remain at or near the nest until close to adult size. Chicks are fully dependant on their parents for food until will after fledging even though they will practice fishing for several weeks after fledging. Some data may indicate that the parents continue to feed young least terns during their first migration and possibly at the wintering grounds.</p><p>Least Terns chicks and eggs are preyed on by a verity of smaller predatory mammals as well as birds such as the American Kestrel and American Crow.</p><p>Least Terns feed primarily on small fish. Their foraging behavior is either hovering and diving or skimming the surface of the water. At sites like Wakodahatchee and Green Cay they can be readily seen flying circuits around the open water areas. They often signal their intent to dive by hovering momentarily before plunging head first to the water.</p><div
id="attachment_10867" class="wp-caption aligncenter" style="width: 650px"><a
href="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern.jpg" rel="lightbox[1389]"><img
class="size-large wp-image-10867" alt="Full Profile" src="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-640x426.jpg" width="640" height="426" /></a><p
class="wp-caption-text">Full Profile</p></div><p>Photographing least terns at Wakodahatchee and Green Cay provides opportunities for two general types of photographs; birds in flight and static shots often with terns perched on the metal roofs of the gazebos. Flight shots pose a significant challenge, as the Least Tern is small, very agile and fast. The static shots provide better access to producing close up images of the terns, though the images generally have artificial elements (the roof) in them, which is less desirable.</p><p>The size and speed of Least Terns pose contradictory challenges to photographing them in flight. Their small size demands a long focal length lens to achieve as much magnification as possible. However, their high speed requires much more available viewfinder space in order to continue to track them. A fast focusing but light hand-holdable lens in the 400mm range is probably a good place to start, I use Canon&#8217;s EF 100-400mm f/4.5-5.6L IS USM, thought the EF 400mm f/5.6L USM or EF 300mm f/4L IS USM would be good lighter alternatives. Nikon users have less choices, the AF-should consider the AF-S Nikkor 300mm f/4D IF-ED the AF-S VR Zoom-Nikkor 70-200 f/2.8G IF-ED with an AF-S Teleconverter TC-14E II may also be a workable solution.</p><p>I&#8217;ve had some success using both Canon&#8217;s consumer (EOS 40D) level and pro level (EOS 1D Mark 3) autofocus systems for flight shots. It goes with out saying that continuous servo autofocus and a fast continuous release mode is an absolute requirement for this type of shot. This is one time where you want to do everything you can to maximize your chances at getting anything.</p><p>Least Tern flight shots pose a second problem with respect to lighting. Their predominately white plumage reflects light very well resulting in a very high dynamic range subject. With out even lighting, and even supplemental lighting, the can exceed the dynamic range that even the best dSLRs can capture. A photograph of a side lit Least Tern can go from completely white on the sunny side to near black on the shadow side.</p><p>The ideal conditions for photographing Least Terns in flight are to have the sun low in the sky and a moderate but constant wind at your back. The sun behind you will provide fairly even lighting to the entire front surface of the bird, and the wind will help slow them down to something a little easier to track and photograph.</p><div
id="attachment_10866" class="wp-caption aligncenter" style="width: 650px"><a
href="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-5.jpg" rel="lightbox[1389]"><img
class="size-large wp-image-10866" alt="Least Tern" src="http://static1.pointsinfocus.com/2012/07/profile-of-the-least-tern/Least-Tern-5-640x426.jpg" width="640" height="426" /></a><p
class="wp-caption-text">Least Tern</p></div><p>The technique I use for Least Tern flight shots is to start tracking the birds at considerable distance as they approach. This way I have time to locate the bird as well as allowing the camera to start focusing. I generally use the center autofocus point though, on the EOS 1D Mark 3 I will expand the auto focus point to the surrounding 9 assist points as well.</p><p>Currently I&#8217;m testing the use of the automatic focus point selection mode, for when the bird is close enough to really fill the frame. I would not recommend using automatic point selection mode on the 9- or 11-point consumer cameras, as the gird is too spread out and there is too much of a chance that one of the peripheral points will lock on to something undesirable.</p><p>Static shots can be done with a 200mm to 400mm lens. By following bird photography best practices, and placing yourself between the sun and the bird you can typically get a clean blue sky or gray cloud backgrounds can be easily had. I recommend using a flash to provide some fill lighting as you are typically shooting up towards the bird. I generally use a setting of -1 to -2/3rds EV on a Canon 580Ex II flash @ 105mm zoom. I don&#8217;t use a better beamer in these situations as frequently I&#8217;m too close and don&#8217;t want to overpower the subject.</p> ]]></content:encoded> <wfw:commentRss>http://www.pointsinfocus.com/learning/biology-and-behavior/profile-of-the-least-tern/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>