I've still gotta memorize all the key presses on the A1200 so I can turn the lcd off and then start lecshoot.lua.
--[[@title Long-Exposure Continuous Shooting@param a Exposure Time (Seconds)@default a 10@range a 1 60@param b Number of Shots@default b 10@range b 0 9999@param d Display On@range d 0 1@default d 1@param f Dark Frame Disabled@range f 0 1@default f 0]]function set_display_key(m) -- click display key to get to desire LCD display mode 0=off, 1=on if (m==0) then m=2 else m=0 end local count=5 local clicks=0 sleep(200) repeat disp = get_prop(props.DISPLAY_MODE) if ( disp ~= m ) then click("display") clicks=clicks+1 sleep(500) end count=count-1 until (( disp==m ) or (count==0)) if (clicks>0 and count==0) then print("unable to change display") endend--This is an array of TV96 values for exposure times 1-60 seconds.--It is indexed by the exposure time in seconds.expVAL = {0, -96, -152, -192, -223, -248, -270, -288, -304, -319, -332, -344, -355, -366, -375, -384, -392, -400, -408, 415, -422, -428, -434, -440, -446, -451, -456, -462, -466, -471, -476, -480, -484, -488, -492, -496, -500, -504, -507, -511, -514, -518, -521, -524, -527, -530, -533, -536, -539, -542, -545, -547, -550, -552, -555, -558, -560, -562, -565, -567}--This is the main part of the script - CAMERA MUST BE IN CONTINUOUS DRIVE MODEprops=require("propcase")set_raw_nr(f) -- disable Canon's dark frame reduction if selectedset_display_key(d)if(b>0)then b=b+get_exp_count()endif(b>9999) then b=b-9999 end -- starts from 1 againprint("exp:",expVAL[a])sleep(2000)set_iso_real( 80 )set_tv96_direct( expVAL[a] )press("shoot_half")repeat sleep(50) until get_shooting() == truepress("shoot_full")repeat sleep(10) until get_exp_count()==brelease("shoot_full")release("shoot_half")set_display_key(1)set_raw_nr(0) -- enable Canon's dark frame reduction
A question I have is the camera noise...I guess that is just something I'll have to live with? I'm don't how to use them, but is it possible to use darkframes with a timelapse video like this to take out the noise or is that only only for star-trail still pictures?
I tend to go check things while I'm posting... I remember now that I had tried to use meteor.lua earlier before I found lecshot.lua. I loaded up meteor.lua a couple of minutes ago and I get the error "your CHDK does not support native calls." I think there's a German CHDK version that includes the native calls and then I have to add something else to convert German to English?
Ok, I've updated to the latest CHDK version and the meteor.lua script runs. Now my finite brain has got to figure out how to use dark frames. It sounds like dark frames need to have RAW files to work for best results, though it seems I read that dark frames will work with jpegs but not as well. Is this correct?
I'm just thinking of the extra time it takes to write the RAW files and also the size of them.
Am I correct in thinking that if CHDK's parameters are set at 'default' then the default meteor.lua script will set the RAW configurations up correctly?
Ok, I've updated to the latest CHDK version and the meteor.lua script runs. Now my finite brain has got to figure out how to use dark frames. It sounds like dark frames need to have RAW files to work for best results, though it seems I read that dark frames will work with jpegs but not as well. Is this correct? I believe that is correct. The RAW images and the RAW dark frame are a pixel-by-pixel match with the sensor so correction can happen on a per pixel basis. JPG's are compressed so getting exact pixel correction might be tough.
I noticed in the CHDK configuration menu that DFS defaulted to 'Auto'...should I set this to 'Off" or will meteor.lua disregard the setting and use it's own configured dark frame exposure rate (default of 1:50/dark:light)?
In the CHDK settings DNG Version defaults to v1.3. The manual states that maximum compatibility is found while using v1.1. Since I'm not sure yet which (free) software I will be using would it be a good idea to change the setting to v1.1?
Temperature of CCD? What would be rough low-noise, high-noise, and danger-level values for this?
One more question and I promise to try and be for a while. Is it better for the RAW images be placed in the directories with the jpegs or in the Canon directory?
Started by fbonomi Creative Uses of CHDK
Started by dom-a « 1 2 » Creative Uses of CHDK
Started by outslider « 1 2 3 4 5 » Creative Uses of CHDK
Started by Anoop Kumar Script Writing
Started by thangggg123 Script Writing