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

Renaming Files in Git

Renaming Files I recently had to rename a lot of files in brf-mode for submission into MELPA . These files have 10+ years of version control history I wanted to keep. In the process I realised retaining all that history in Git isn't as simple as I thought 😀 I thought it was as simple as using git mv rather than filesystem  mv and Git would know everything had been renamed. It turns out I was wrong and I should have known that from my knowledge of how Git works 😖 In reality, Git works by storing snapshots rather than file or directory metadata and git mv is just a convenience shortcut for typing: $ mv <old name> <new name> $ git rm <old name> $ git add <new name> That's all there is to it! Now the "magic" happens when you git log or git blame a file and Git works out the file was renamed by diffing the contents.  If files have the same contents (within a certain threshold %) it thinks a rename happened. See here in the  Gi...