I'm testing the max values of aperture and shutter speed of the S3. Using a script with set_tv96_direct and set_av96_direct functions I obtain several images of the same scene (this time overcast sky, not sunny
) with different Av and Tv values (in steps of one step). Then I get the histogram from the raw files:
dcraw -D -4 IMG_XXXX.CRW (makes a PGM image without processing)
I've written a small C program to calculate the histogram from the PGM for each channel.
From the histogram, I study the evolution of the coordinate x of some peak. For example, when x=1000 with exposure EV=14, then EV=15 (one step, half light) will show the peak at x = (1000-31)/2 + 31 = 516. Remember, x=31 is "black" in these cameras.
Well, my first test with ISO100,
36mm, f2.8 to 16 and t =1/2048 to 1/65536s shows that
f8 is the max value for aperture (as many users have said before). For the shutter speed, nothing wrong up to 1/8192s, but the next three values don't match the expected values:
- 1/16384s (1 step) behaves as a 1/2 step in exposure, that is, 1/11585s.
- 1/32768s is really 1/16384s.
- 1/65536s is the same: 1/16384s.
So the max shutter speed at 36mm (wide angle) seems to be
1/16384s but you must indicate 1/32768s to obtain it
... or maybe it's a bug of the
set_tv96_direct function I've used in the script? At least, ISO value (using AutoCHDKtoEXIF) says that the selected shutter time was 1/65536s when using "set_tv96_direct 1536". I'am using s3is-100a-0.9.9-863 firmware.
The next test will be with a focal length of 432mm.