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!