xwhatsit
Well-known
Warning: geekery ahead.
I've been doing the hybrid thing; develop negs, then scan. The trouble with scanning negs is the flat contrast.
Up until now, it hasn't been a huge issue. I've been using Maco UP400+ and pushing to 1600, and the resulting large contrast increase means they scan in and look pretty good without needing much tweaking. The limited curves adjustment you can do in Vuescan was easily enough to produce an on-screen image with reasonable contrast.
However, I just shot a couple of rolls of FP4+ at box speed. At first I was really disappointed, it looked so flat! So rather than trying to tweak in Vuescan, I thought I'd fiddle with curves in GIMP.
The issue with this, is the fact that GIMP can only handle 8 bits per channel, and B&W of course only has one channel. So there's no point in scanning to a 16 bit TIFF. This means after fiddling with curves, you quickly end up with a blocky `steppy' image that looks like a GIF from 1994.
I run Linux, so Photoshop is out. I tried Cinepaint, which is an old fork of GIMP that does 16bit channels. This produced good results but the user interface was worse than GIMP and it was pretty slow.
The good news is that ImageMagick does 16 bit channels fine and very quickly. What is even better (for a complete geek like me) is that ImageMagick is a command-line suite. So I can script the automatic contrast increase of an entire roll of film. The operator is -sigmoidal-contrast. So you simply type `convert Scan01.tif -sigmoidal-contrast 10,50% Result01.tif'. Sigmoidal-contrast gives the classic S-shape curve. The 10 in that example is the amount of curve to give it, and the 50% is the mid-point of the curve. The process is a lot faster than applying levels in GIMP on my ancient laptop and you end up with a beautiful smooth 16bit TIFF. This can then be output to a JPEG (or do it on the fly by specifiying Result01.jpg in the above command, it looks at the extension to figure out what format to save it in). JPEG is 8bit per channel of course, but the important bit is that you weren't doing the actual curves in 8bit and getting rounding errors as a result.
ImageMagick is in Ubuntu, and most other Linux distributions. There's binaries available for Windows and Mac too I think.
Check this link for more info: http://www.imagemagick.org/Usage/color/#sigmoidal
I've been doing the hybrid thing; develop negs, then scan. The trouble with scanning negs is the flat contrast.
Up until now, it hasn't been a huge issue. I've been using Maco UP400+ and pushing to 1600, and the resulting large contrast increase means they scan in and look pretty good without needing much tweaking. The limited curves adjustment you can do in Vuescan was easily enough to produce an on-screen image with reasonable contrast.
However, I just shot a couple of rolls of FP4+ at box speed. At first I was really disappointed, it looked so flat! So rather than trying to tweak in Vuescan, I thought I'd fiddle with curves in GIMP.
The issue with this, is the fact that GIMP can only handle 8 bits per channel, and B&W of course only has one channel. So there's no point in scanning to a 16 bit TIFF. This means after fiddling with curves, you quickly end up with a blocky `steppy' image that looks like a GIF from 1994.
I run Linux, so Photoshop is out. I tried Cinepaint, which is an old fork of GIMP that does 16bit channels. This produced good results but the user interface was worse than GIMP and it was pretty slow.
The good news is that ImageMagick does 16 bit channels fine and very quickly. What is even better (for a complete geek like me) is that ImageMagick is a command-line suite. So I can script the automatic contrast increase of an entire roll of film. The operator is -sigmoidal-contrast. So you simply type `convert Scan01.tif -sigmoidal-contrast 10,50% Result01.tif'. Sigmoidal-contrast gives the classic S-shape curve. The 10 in that example is the amount of curve to give it, and the 50% is the mid-point of the curve. The process is a lot faster than applying levels in GIMP on my ancient laptop and you end up with a beautiful smooth 16bit TIFF. This can then be output to a JPEG (or do it on the fly by specifiying Result01.jpg in the above command, it looks at the extension to figure out what format to save it in). JPEG is 8bit per channel of course, but the important bit is that you weren't doing the actual curves in 8bit and getting rounding errors as a result.
ImageMagick is in Ubuntu, and most other Linux distributions. There's binaries available for Windows and Mac too I think.
Check this link for more info: http://www.imagemagick.org/Usage/color/#sigmoidal
Last edited: