create_synthetic_luminance
Combine Ha and OIII images into a synthetic luminance master using adjustable weights. Optionally cap the result and report the new view's median and max for quality checks.
Instructions
Create a mono view from a weighted sum of Ha and OIII. It is ha_weight * Ha + oiii_weight * OIII, replacing any view of that name; with max_value the result is min(…, max_value); it is then truncated to [0,1]. Reports the new view's median and max.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ha_id | Yes | Ha view (mono) | |
| oiii_id | Yes | OIII view (mono, same dimensions) | |
| ha_weight | Yes | Multiplier on Ha | |
| max_value | No | Optional: upper cap on the result. Omitted = truncation to [0,1] only | |
| output_id | No | Name of the view to create; omitted = SYNTH_L | |
| oiii_weight | Yes | Multiplier on OIII |