Exposure bracketing on SD870 - General Help and Assistance on using CHDK stable releases - CHDK Forum supplierdeeply

Exposure bracketing on SD870

  • 5 Replies
  • 2971 Views
Exposure bracketing on SD870
« on: 21 / May / 2008, 16:18:15 »
Advertisements
Is anyone successfully using exposure bracketing on the SD870/Ixus 860?
 
Since the camera uses a neutral density to set either f/2.8 or f/8, and doesn't have an iris, I am hoping to find a script that brackets using shutter speed settings only (no aperture settings).

If anybody can point me to such a script, I'd greatly appreciate it.

*

Offline fudgey

  • *****
  • 1705
  • a570is
Re: Exposure bracketing on SD870
« Reply #1 on: 21 / May / 2008, 17:23:48 »
Why don't you just use the CHDK built-in continuous mode (Tv) bracketing?

Re: Exposure bracketing on SD870
« Reply #2 on: 24 / May / 2008, 14:17:29 »
As far as I know, I can't use the Tv bracketing in continuous mode because the camera is up in the air on a kite line taking aerial photos, and it's being triggered using a USB remote script.  It would be ideal if the camera would take 3 photos automatically in 1/3 or 2/3 EV increments each time it receives the USB triggering pulse.

Example of kite aerial photography:  http://www.flickr.com/photos/ml_kap/2127796341/


*

Offline vine

  • ***
  • 124
  • A560
    • my chdk page
Re: Exposure bracketing on SD870
« Reply #3 on: 24 / May / 2008, 14:42:07 »
can be easily done with a script
something like:
Code: [Select]
:loop
wait_click 1
is_key k "remote"
if k=1 then goto "shots"
goto "loop"

:shots
get_jpg_count x
y=x-a
press "shoot_half"
sleep 1000
press "shoot_full"
do
  get_jpg_count z
until z=y
release "shoot_full"
release "shoot_half"
print "Take",i,"done"
goto "loop"

end
where a is the number of shots
« Last Edit: 24 / May / 2008, 14:49:05 by vine »
my photo map

my chdk page with tutorials, scripts and more

>> finally back from vacation (was a bit longer than intended) <<


*

Offline fe50

  • ******
  • 3147
  • IXUS50 & 860, SX10 Star WARs-Star RAWs
    • fe50
Re: Exposure bracketing on SD870
« Reply #4 on: 24 / May / 2008, 14:46:32 »
So if you trigger with USB you have to work with a script...

In the german forum there's a script "Belichtungsreihe Fix-Focus", in german language but it can be translated easily...it's not with USB  control yet.
(for DigicII, get_prop 205 have to be changed to 206 for DigicIII)

The Script does focusing only one time, then the focus is fixed.

It's an extension of a script originally written by CHDKLover and msl, maybe they can help you ...




Re: Exposure bracketing on SD870
« Reply #5 on: 24 / May / 2008, 17:06:13 »
Thanks very much for your suggestions, Vine and fe50.  I'll play around and if I have questions I will post them here.

 

Related Topics