[Starting Computer and Photo babble now, non-geeks please skip the following]
To convert the RAW files to JPGs, I am experimenting with various methods, all involving dcraw. I am still a bit undecided which gives the best results, but the third method looks nice on my screen most of the time, although sometimes a bit on the blue side... I have put some sample images below, all taken at Lusco Fusco in Erlangen at 2nd of Septembre.
Method 1
dcraw -a -c foo.CRW | ppmtojpeg > foo.jpg
Method 2
Inspired by this webpage:
dcraw -a -4 foo.CRW ;
convert -normalize -gamma 1.8 foo.ppm foo.jpg ;
Method 3
Using an ICC color profile for an EOS 10D camera, which uses a similar sensor as my EOS 300D and as found here:
dcraw -4 -c -w -m foo.CRW | pnmnorm -bpercent 0 -wpercent 0.1 -brightmax | pnmtotiff -truecolor >temp.tif;
tifficc -w -i eos10d-linear-8apr2004.icc temp.tif foo.tif;
convert foo.tif foo.jpg ;
Examples
dcraw only.
dcraw to 16bit pnm, normalizing, converting to JPG
dcraw to 16bit tif, applying ICC profile and converting to JPG
dcraw only
dcraw and normalize
dcraw and ICC profile
dcraw only
dcraw and normalize
dcraw and ICC profile
No comments:
Post a Comment