Changes between Version 11 and Version 12 of TipsAndTricks
- Timestamp:
- Apr 28, 2010, 11:24:38 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipsAndTricks
v11 v12 15 15 == Shooting sequence == 16 16 17 Dureing the shooting sequence, Papywizard executes the following steps: 17 (Only for hardware controlled shutters) 18 19 === Without mirror lockup === 18 20 19 21 * move to the requested position 20 * wait '''stabilizationDelay''' sec. 21 * if '''mirror lockup''' flag is set, trigger the camera shutter for '''stabilizationDelay''' sec. 22 * trigger the camera shutter for '''timeValue''' sec. 22 * wait '''Stabilization delay''' sec 23 * trigger the camera shutter 24 * for '''Pulse Width high''' msec without '''Bulb mode''' 25 * for ''''''Time value''' sec with '''Bulb mode''' 23 26 * move to the next position 24 27 25 The ''' stabilizationDelay''' value mainly depends of the camera/lens weight, and the size of the tripod. Using heavy camera and small tripod will take longer to stabilize than light camera and strong tripod. In practice, 0.1 to 0.5 sec. should be enough.28 The '''Stabilization delay''' value mainly depends of the camera/lens weight, and the size of the tripod. Using heavy camera and small tripod will take longer to stabilize than light camera and strong tripod. In practice, 0.1 to 0.5 sec. should be enough. 26 29 27 The ''' timeValue''' param should be computed so that the entire shooting sequence can complete. This includes:30 The '''Time value''' param should be computed so that the entire shooting sequence can complete. This includes: 28 31 29 * AF cycle 30 * if '''mirror lockup''' flag is not set,time for mirror to lockup32 * AF cycle (not a good idea to use AF) 33 * time for mirror to lockup 31 34 * exposure time 32 * time for mirror to go back to initial position35 * time for mirror to go down 33 36 * time for writing buffer image to card 34 37 35 38 The last 2 sequences can be included in the next move, but be sure that the camera is ready when the next shoot sequence begins! 36 39 37 [[Image(shutter_cycle_stable.png, nolink)]] 40 === With mirror lockup === 41 42 * move to the requested position 43 * trigger the camera shutter for '''Pulse Width high''' msec 44 * wait '''Stabilization delay''' sec 45 * trigger the camera shutter 46 * for '''Pulse Width high''' msec without '''Bulb mode''' 47 * for ''''''Time value''' sec with '''Bulb mode''' 48 * move to the next position 49 50 The '''Time value''' param should be computed so that the entire shooting sequence can complete. This includes: 51 52 * exposure time 53 * time for mirror to go down 54 * time for writing buffer image to card 55 56 The last 2 sequences can be included in the next move, but be sure that the camera is ready when the next shoot sequence begins! 57 58 [[Image(shutter_cycle_dev.png, nolink)]] 38 59 39 60 == Shooting direction == … … 42 63 43 64 The best configuration mainly depends of the subject you are shooting. For example, if you have fast moving clouds, it is best to let the default configuration, to shoot the entire sky as fast as possible. But it also depends of the orientation of the head; if it is mounted on an horizontal pole, then choose column as first shooting direction. 44 45 == Testing positions ==46 47 If the '''Time value''' parameter is set to 0, the head will skip the shooting sequence. This can be used to check all positions (new in 1.9.4).