Skip to main content

First go at HDR

Had a go at HDR (High Dynamic Range) photography for the first time in Devon.

I shot the sunrise at Seaton Hole as a hand-held 5 exposure sequence (-2 -1 0 +1 +2 EV : "5F 1.0" in Nikon speak). Unfortunately I didn't notice at the time, but the -2 shot still had the sun overexposed which means the sun is going to be overexposed in the resulting HDR image. I guess I should have used a 7 exposure sequence or maybe have a 2 EV gap between exposures. In any case, that will hopefully teach me to check the histogram next time...

As I don't have any dedicated HDR software, I merged the sequence together in PtGui Pro. This is normally intended for (HDR) panorama stitching. Fortunately it is happy stitching single view panoramas, which also allowed me to cater for the camera moving between exposures. I used the "Exposure Fusion" method (ie exposure blending) rather than Tone Mapping so that the sea would become more of a blur (as it moved a lot between exposures):

Exposure Fusion in PtGui
For comparison, here's the base exposure (+0 EV) image, after processing in Capture NX2 to lighten the shadows and darken the sky with controls points:

Base exposure processed in CNX2

Here is the unmodified base exposure, straight from the camera:

Straight from the Camera
After all that effort I think I prefer the CNX2-edited version, but maybe I just need some more practice with HDR!?

More than anything else, I think this result is a testament to the DR and "Pixel Integrity" of the D700, which allows a lot of headroom in post processing. Although taking 1 shot and using an ND graduated filter would probably have been the best solution for this particular scene.

Comments

Popular posts from this blog

Merging Git Repositories

No project of significant size that I've ever seen has retained its initial structure. Restructuring projects is a fact of life, but unfortunately Git doesn't make it easy. Fundamentally this stems from the way Git works, treating changes as a succession of snapshots and not storing any other metadata. Of course this is part of what makes Git fast and efficient, but at the expense of making some common operations more difficult for users. Git really is a perfect 21st century illustration of the classic  "Worse Is Better"  paradigm of successful software 😀 Previously I discussed how to split a Git project apart into separate repositories . Now I'm going to discuss how to do the opposite and merge separate repositories into one. On the face of it, this would seem a simpler task as Git has powerful support for merging... Let's take the opposite example to my splitting apart article - say you have a main Git repo (ProjA) and a second repo (ProjB) in...

East Devon Continued

Some iPhone pictures: Seaton Bay from Beer Hill at Sunset Gulls on Beer Beach We also had a pair of Pheasants in the garden, which was a bit of a surprise. There are always plenty of rabbits and wild birds, but this is the first time I've seen game birds. Here is the male, sitting on the garden wall, wondering what I'm up to: Male Pheasant I also spotted these attractive white Cyclamen in the garden: Cyclamen

Setting Environment Variables and the PATH on MacOS

Time Was setting environment variables and the PATH on a Mac running OSX was just like any other *IX.  However with successive OS releases Apple have changed how this works (more than once) and generally made it more difficult 😢  This article discusses how I go about setting environment variables on Mojave and Catalina. Why does this matter? MacOS doesn't add  /usr/local/bin to the PATH by default, which is unfortunate as most *IX-style programs you build yourself will be installed in there. If you only ever launch stuff from Terminal, all you have to do is set environment variables and the path from Shell startup files in the time immemorial fashion. However, this doesn't help with native Mac Apps like Emacs, which aren't launched from a shell and where you may still want to access custom environment variables and programs in /usr/local/bin . Setting the PATH In the past you could add to the path via /etc/paths (or paths.d ), however this no longer works...