Digital Photography ToolsConvert G3 Canon RAW files with dcrawTo convert RAW files from your G3 cam, get # gcc -o dcraw -O3 dcraw.c -lm Then run it on a RAW file: # dcraw -r 0.8 -l 1.1 -g 0.7 CRW_0001.CRW You will get a file called CRW_1695.ppm. The settings used reduce the red channel by 20% and boost the blue channel by 10% to get the right white balance. The gamma value is as well adjusted to 0.7 (default setting is 0.8), for getting a resonable bright picture. These values are empirical and generally only work with daylight. Move images from cam to linux boxHow would it be if your linux box would move all images taken by your digital still camera to the right place, a directory for each day? I wrote a small script which does exactly that. You may want to try it out, it's free (as in speech) and licensed under the GPL. The script uses gphoto. If your cam supports the USB Mass Storage protocol, you need to tweak the script a bit (but it's easier anyway than using gphoto). Rotate images without loss & optimize in sizeMy cam (a Canon Powershot G3) saves the rotation of cam in degrees to each photograph taken, but does not rotate them actually. The script uses jpegtran-mmx to rotate the jpeg files losslessly, and jhead to remove the thumbnails (this saves about 6-10KB on each file), while keeping the EXIF headers. This script is free (as in speech) and licensed under the GPL. It may need some modification to run on your box. © Copyright 2004 - 2006 Nicola Fankhauser. All Rights Reserved. |