Hi, I am currently trying to get the old HDR stack script to work with the powershot SX230hs and nay other camera with similar controls
While it is not ideal, it is more reliable than the bracketing in continuous mode and the HDR script that comes with CHDK.
The changes that are needed is the click commands eg click "right"
i need them to perform the action of turning the clickwheel to the right or left.
Code for the
.bas @title M Mode HDR Stack
@param a Number of steps
@default a 2
@param b Step size (1/3EV)
@default b 3
@param c Number of Shots
@default c 5
if a<1 then let a=2
if b<1 then let b=3
if c<1 then let c=1
sleep 1000
print "Preparing..."
for n=1 to a*b
click "left"
next n
for s=1 to a*2
print "Shoot", s, "of", a*2+1
for r=1 to c
shoot
next r
for n=1 to b
click "right"
next n
next s
print "Shoot", a*2+1, "of", a*2+1
for r=1 to c
shoot
next r
print "Finalizing..."
for n=1 to a*b
click "left"
next n
end
For most shooting conditions, if the required actions are done in all but bright sunlight, the lens will remain at F3.1
Compared to the built in bracketing and the built in HDR script, putting the camera in P mode then turning the click wheel to to adjust the exposure provides significantly better HDR images when merged using photoshop. It is also just as fast as the bracketing functions that CHDK comes with.
I am pretty much new to scripting for CHDK and the reference page does not provide examples for each command (for some it describes and gives an example code for performing 1 action but for the wheel commands, it offers no information
http://chdk.wikia.com/wiki/CHDK_Scripting_Cross_Reference_Page