Changeset 42666
- Timestamp:
- Apr 23, 2024, 5:58:22 PM (2 years ago)
- Location:
- branches/2dbias/ippconfig
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
gpc1/format_20100723.config (modified) (1 diff)
-
recipes/jpeg.mdc (modified) (3 diffs)
-
recipes/ppImage.config (modified) (5 diffs)
-
recipes/reductionClasses.mdc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2dbias/ippconfig
- Property svn:mergeinfo changed
/branches/eam_branches/ippconfig.20240412 (added) merged: 42661-42662 /trunk/ippconfig (added) merged: 42657-42658
- Property svn:mergeinfo changed
-
branches/2dbias/ippconfig/gpc1/format_20100723.config
r41898 r42666 161 161 CELL.TRIMSEC.SOURCE STR HEADER 162 162 CELL.TRIMSEC STR DATASEC 163 CELL.BIASSEC.SOURCE STR HEADER 164 CELL.BIASSEC STR BIASSEC 163 # CELL.BIASSEC.SOURCE STR HEADER 164 # CELL.BIASSEC STR BIASSEC 165 # two regions are needed for 2D bias subtraction. the first is the read-dir (y), the second is the cross-dir (x) 166 # 2D bias subtraction requires ppImage.config OVERSCAN.2D to be TRUE 167 CELL.BIASSEC.SOURCE STR VALUE 168 CELL.BIASSEC STR [591:624,1:598],[1:590,598:608] 169 # 170 # a single region will be used for constant and 1D bias subtraction 171 # CELL.BIASSEC.SOURCE STR VALUE 172 # CELL.BIASSEC STR [591:624,1:608] 165 173 END 166 174 END -
branches/2dbias/ippconfig/recipes/jpeg.mdc
r34802 r42666 1 # This recipe file is used in a slightly different fashion from the others 2 # The different programs define an output JPEG file (or files) for the binned 3 # images with names based on the program and the binning level. 4 5 # ppImage : PPIMAGE.JPEG1 & PPIMAGE.JPEG2 6 # ppSub : PPSUB.OUTPUT.JPEG1 & PPSUB.OUTPUT.JPEG2 & PPSUB.OUTPUT.RESID.JPEG 7 # ppStack : PPSTACK.OUTPUT.JPEG1 & PPSTACK.OUTPUT.JPEG2 8 # ppstamp : PPSTAMP.OUTPUT.JPEG 9 10 # these names are the used to select the recipe metadata blocks below 11 12 # alternate recipes can be defined by nesting those metadata blocks inside 13 # additional named blocks, like the BIAS example below 14 1 15 # JPEG options for files 2 16 # Each METADATA entry should contain: … … 7 21 # * OPTIONS: comma-separated list : -SB,+SB,+X,+Y,-X,-Y 8 22 23 # to define the grayscale values, the image robust MEAN and STDEV are calculated 24 # (if those cannot be calculated, a simple MEAN and STDEV are used) 25 26 # the different SCALE.MODE values define the min and max colorscale values as: 27 # RANGE : MEAN - 2*STDEV*SCALE.MIN to MEAN + 2*STDEV*SCALE.MAX 28 # FRACTION : MEAN*SCALE.MIN to MEAN*SCALE.MAX 29 # VALUE : SCALE.MIN to SCALE.MAX 30 31 # COLORMAP values can be: greyscale, grayscale, -greyscale, -grayscale, heat, rainbow, 32 9 33 PPIMAGE.JPEG1 METADATA 10 34 COLORMAP STR -greyscale … … 15 39 END 16 40 41 PPIMAGE.JPEG2 METADATA 42 COLORMAP STR -greyscale 43 SCALE.MODE STR RANGE 44 SCALE.MIN F32 -5.0 45 SCALE.MAX F32 +10.0 46 OPTIONS STR -SB,-X,+Y 47 END 48 49 ALTCOLORS METADATA 50 PPIMAGE.JPEG1 METADATA 51 COLORMAP STR rainbow 52 SCALE.MODE STR RANGE 53 SCALE.MIN F32 -5.0 54 SCALE.MAX F32 +10.0 55 OPTIONS STR +SB,-X,+Y 56 END 57 58 PPIMAGE.JPEG2 METADATA 59 COLORMAP STR rainbow 60 SCALE.MODE STR RANGE 61 SCALE.MIN F32 -5.0 62 SCALE.MAX F32 +10.0 63 OPTIONS STR -SB,-X,+Y 64 END 65 END 66 17 67 PPIMAGE.JPEG1.HEAT METADATA 18 COLORMAP STR heat68 COLORMAP STR -greyscale 19 69 SCALE.MODE STR FRACTION 20 SCALE.MIN F32 0.95 21 SCALE.MAX F32 1.05 22 OPTIONS STR +SB,-X,+Y 23 END 24 25 PPIMAGE.JPEG2 METADATA 26 COLORMAP STR -greyscale 27 SCALE.MODE STR RANGE 28 SCALE.MIN F32 -5.0 29 SCALE.MAX F32 +10.0 30 OPTIONS STR -SB,-X,+Y 70 SCALE.MIN F32 0.5 71 SCALE.MAX F32 1.5 72 OPTIONS STR +SB,+X,+Y 31 73 END 32 74 -
branches/2dbias/ippconfig/recipes/ppImage.config
r42390 r42666 97 97 # Overscan subtraction 98 98 OVERSCAN.SINGLE BOOL TRUE # Reduce overscan to a single value? 99 OVERSCAN.CONSTANT BOOL FALSE # Apply a known, fixed value? 100 OVERSCAN.VALUE F32 0.0 # value to apply, if requested 101 OVERSCAN.MIN.VALID F32 0.0 # minimum valid overscan value 102 OVERSCAN.MAX.VALID F32 65536.0 # maximum valid overscan value 103 104 # statistics to use to convert overscan region to a vector 99 105 OVERSCAN.FIT STR NONE # NONE | POLYNOMIAL | SPLINE 100 106 OVERSCAN.ORDER S32 5 # Order of polynomial fit … … 102 108 OVERSCAN.BOXCAR S32 0 # Boxcar smoothing radius 103 109 OVERSCAN.GAUSS F32 0.0 # Gaussian smoothing sigma 104 OVERSCAN.CONSTANT BOOL FALSE # Apply a known, fixed value? 105 OVERSCAN.VALUE F32 0.0 # value to apply, if requested 106 OVERSCAN.MIN.VALID F32 0.0 # minimum valid overscan value 107 OVERSCAN.MAX.VALID F32 65536.0 # maximum valid overscan value 110 111 OVERSCAN.2D BOOL FALSE # use a 2D model for the overscan subtraction? 112 113 # statistics to use to convert 2D top-overscan region to a vector 114 OVERSCAN.2D.FIT STR NONE # NONE | POLYNOMIAL | SPLINE 115 OVERSCAN.2D.ORDER S32 5 # Order of polynomial fit 116 OVERSCAN.2D.STAT STR MEAN # MEAN | MEDIAN 117 OVERSCAN.2D.BOXCAR S32 0 # Boxcar smoothing radius 118 OVERSCAN.2D.GAUSS F32 0.0 # Gaussian smoothing sigma 108 119 109 120 # Pattern Row subtraction options … … 2626 2637 FLAT BOOL TRUE # Flat-field normalisation 2627 2638 MASK BOOL TRUE # Mask bad pixels 2628 MASK.BUILD BOOL TRUE # Build internal mask?2639 MASK.BUILD BOOL TRUE # Build internal mask? 2629 2640 MASK.BURNTOOL BOOL FALSE # Mask potential burntool trails 2630 2641 PATTERN.ROW BOOL FALSE # Row pattern correction … … 2633 2644 BIN1.FITS BOOL TRUE # Save 1st binned chip image? 2634 2645 BIN2.FITS BOOL TRUE # Save 2nd binned chip image? 2646 BIN1.JPEG BOOL TRUE # Save 1st binned jpeg? 2647 BIN2.JPEG BOOL TRUE # Save 2nd binned jpeg? 2635 2648 PHOTOM BOOL FALSE # Source identification and photometry 2636 2649 ASTROM.CHIP BOOL FALSE # Astrometry per chip? … … 2639 2652 CROSSTALK.MEASURE BOOL FALSE # Subtract model background? 2640 2653 2641 BACKGROUND BOOL TRUE# Subtract background?2642 PATTERN.DEAD.CELLS BOOL TRUE# continuity corrections (see options below)2654 BACKGROUND BOOL FALSE # Subtract background? 2655 PATTERN.DEAD.CELLS BOOL FALSE # continuity corrections (see options below) 2643 2656 OVERSCAN.MIN.VALID F32 100.0 # Overscan subtraction 2644 2657 OVERSCAN.MAX.VALID F32 64000.0 # Overscan subtraction -
branches/2dbias/ippconfig/recipes/reductionClasses.mdc
r42390 r42666 1 1 # These reduction classes define recipes that go together as a group 2 3 # the detrend reduction classes are used by the detrend ippScripts to select 4 # the desired recipes for the different types of detrend products: 5 6 ## detrend_process_imfile.pl loads recipes (det_type)_PROCESS & (det_type)_JPEG_IMAGE 7 ## detrend_resid_imfile.pl loads either (det_type)_RESID OR (det_type)_VERIFY AND (det_type)_JPEG_RESID 8 ## detrend_stack.pl loads (det_type)_STACK 9 10 # (det_type)_PROCESS & (det_type)_RESID are used to select PPIMAGE recipes 11 # (det_type)_JPEG_IMAGE, (det_type)_JPEG_RESID are used to select JPEG recipes 12 # (det_type)_STACK is used to select the PPMERGE recipe (NOTE: not ppStack) 2 13 3 14 DETREND METADATA
Note:
See TracChangeset
for help on using the changeset viewer.
