Common arithmetic workflows in tissue image processing:
Background Correction
Subtract images or Divide images — Subtract a background estimate from the signal, or divide by a flat-field reference for illumination normalization. Division is preferred when the artifact is multiplicative (uneven illumination); subtraction when it's additive (constant offset).
Channel Combination
Add weighted images — Combine signals from multiple channels with user-defined weights. Useful for creating virtual channels from partially overlapping fluorophores.
Inversion
Complement — Inverts the image so that bright becomes dark and vice versa. Essential for converting brightfield hematoxylin (dark nuclei on light background) to fluorescence-like representation (bright nuclei on dark background) for detection engines that expect fluorescence-style input.
Dynamic Range
Logarithm — Compresses the wide dynamic range of 16-bit fluorescence images. Also the basis of the OD transform (see Optical Density Conversion).
Polynomial — General-purpose intensity remapping when log/exp/sqrt aren't the right curve shape.
Use Subtract to remove background. Use Divide to correct uneven illumination. Use Complement to invert hematoxylin for detection. Use Log to compress 16-bit dynamic range. Use Add weighted to blend channels. Most pipelines use just 2–3 of these operations.