For that I installed CHDK on my Ixus 750 and I must say that I am impressed. Using the CHDK firmware extension a horde of new features are unlocked (for example the possibility to take RAW images instead of JPEGs). And most importantly CHDK is scriptable, so you may write your own scripts to control your camera.
Based on an example in the tutorial I quickly wrote an HDR script that works on an Ixus 750. When I activate this script my camera snaps five pictures at -2, 1, 0, +1, +2 exposure.
@title EXP bracketing
@param a Number of +/- steps
@default a 2
@param b Step size (1/3EV)
@default b 3
if a<1 then let a=2
if b<1 then let b=3
sleep 1000
print "Preparing..."
rem click "erase"
for n=1 to a*b
click "left"
next n
click "shoot_half"
sleep 3000
for s=1 to a*2
print "Shoot", s, "of", a*2+1
click "shoot_full"
print "shot done"
sleep 5000
for n=1 to b
click "right"
next n
next s
print "Shoot", a*2+1, "of", a*2+1
click "shoot_full"
sleep 5000
print "Finalizing..."
for n=1 to a*b
click "left"
next n
rem click "erase"
end
In order to use this script the camera must be in manual mode and the exposure menu must be opened...
No comments:
Post a Comment