In GIMP, I usually use the 'auto white balance' option which usually gives great results. Often, I also use the 'auto color enhance' option and, occasionally, I use a simple filter to sharpen the features in the image.
Here's a GIMP script which will automate the process for a folder of pictures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (batch-auto-fix pattern | |
radius | |
amount | |
threshold) | |
(let* ((filelist (cadr (file-glob pattern 1)))) | |
(while (not (null? filelist)) | |
(let* ((filename (car filelist)) | |
(image (car (gimp-file-load RUN-NONINTERACTIVE | |
filename filename))) | |
(drawable (car (gimp-image-get-active-layer image)))) | |
(plug-in-unsharp-mask RUN-NONINTERACTIVE | |
image drawable radius amount threshold) | |
(gimp-levels-stretch drawable) | |
(plug-in-color-enhance RUN-NONINTERACTIVE | |
image drawable) | |
(gimp-file-save RUN-NONINTERACTIVE | |
image drawable filename filename) | |
(gimp-image-delete image)) | |
(set! filelist (cdr filelist))))) |
'radius' (pixels) of the blur (>1, suggested 5)
'amount' refers to the strength of the effect (suggested 0.5)
'threshold' refers to the pixel value beyond which the effects are applied (0 - 255, suggested 0)
These require a little bit of trial and error, depending on the type of picture. In the command line, the script is called like this:
gimp -i -b '(batch-auto-fix "*.JPG" 5.0 0.5 0)' -b '(gimp-quit 0)'
An obligatory example. Before:
and after:
Enjoy!
2 comments:
Thank you very much. This is very useful.
Hi Daniel, I’ve just digitised around 150 films as negatives using the Valoi Easy35 and Filmlab software. The conversion was straightforward and speedy. However, the photos need a little enhancement to bring the colours out. Now, I’m not a pro nor a hobbyist but I do have GIMP and use it on a very basic level for auto commands like white balance.
Your code is quoted widely elsewhere by those who are familiar with using it but they quickly veer into territory that I’m not experienced in or comfortable with such as text editors, script fu, terminal etc. Would it be possible to create a step by step guide (a.k.a. Idoits guide) for non-coders so that more people like me can use it to batch process images?
Post a Comment