Changeset 9452 for trunk/ippScripts/scripts/detrend_reject_exp.pl
- Timestamp:
- Oct 9, 2006, 5:42:10 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_reject_exp.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_reject_exp.pl
r9446 r9452 34 34 # This measures how close it is to what's expected 35 35 use constant REJECT_MEAN => { 36 'bias' => 10, # Should be fairly flat; some CRs37 'dark' => 100, # Lots of CRs36 'bias' => 0, # Should be fairly flat; some CRs 37 'dark' => 0, # Lots of CRs 38 38 'shutter' => 10, # Should be less than 10 sec 39 39 'flat' => undef # Can't define expected value (depends on exposure level) … … 43 43 # This measures how much variation there is within the components of an exposure, compared to "typical" 44 44 use constant REJECT_STDEV => { 45 'bias' => 10, # Components should have the same degree of variation46 'dark' => 10, # Components should have the same degree of variation45 'bias' => 0, # Components should have the same degree of variation 46 'dark' => 0, # Components should have the same degree of variation 47 47 'shutter' => undef, # Might be significant variation 48 'flat' => 10 # Components should have the same degree of variation48 'flat' => 0 # Components should have the same degree of variation 49 49 }; 50 50 … … 52 52 # This measures how structured the images are, compared to "typical" 53 53 use constant REJECT_MEAN_STDEV => { 54 'bias' => 5, # All images should be equally structured55 'dark' => 5, # All images should be equally structured56 'shutter' => 5, # All images should be equally structured57 'flat' => 5# All images should be equally structured54 'bias' => 0, # All images should be equally structured 55 'dark' => 0, # All images should be equally structured 56 'shutter' => 0, # All images should be equally structured 57 'flat' => 0 # All images should be equally structured 58 58 }; 59 59
Note:
See TracChangeset
for help on using the changeset viewer.
