I am advancing in research with a few different algorithms.
The fact is, I realize that light variations are VERY different from situation to situation, and different algorithms or tweaks are needed for different situations!
So, I asking for some help from all you fellows.
In order to properly test the script, could you please run this script and sens me the results?
This script reads bightness information and logs it to pr_screen.txt. Also, it shoots a shot every 10 minutes, just to document what was going on and why the light was changing.
I would like to have the log result for different situations: clear sky / overcast; around noon / at twilight etc.
Artistic considerations do not matter, so just stick the camera to the window and let it run for about a couple of hours and send me the PS_SCREEN.TXT file plus the few shots it takes (it's ok even in S size, they are just to understand what's
That would help me very much.
Thanks to all the ones that will feel like helping!
PS: do not leave the camera pointing straight to the sun!
@title Brightness log
rem brightness log
rem reads brightness information every 10 seconds and logs it to pr_screen.txt
rem Plus, shoots a photo every 10 minutes
rem please run with following settings
rem MODE: AUTO
rem flash: off
rem Image size: S (the smallest)
print_screen 1
print "Start Brightness Log"
rem loop counter
p=0
:loop
press "shoot_half"
sleep 1000
get_bv96 B
get_sv96 S
get_av96 A
get_tv96 T
release "shoot_half"
print p,B,S,A,T
if (p%60=0) then shoot
p=p+1
sleep 9000
goto "loop"