---
title: Adaptive Retinal Image Enhancement Methods
url: https://www.emergentmind.com/topics/adaptive-retinal-image-enhancement
type: topic
---

# Adaptive Retinal Image Enhancement Methods

Searching arXiv for recent and foundational papers on retinal image enhancement and related fundus/UWF enhancement methods.
Adaptive retinal image enhancement denotes the class of methods that modify retinal photographs so that diagnostically relevant structures become more visible or more separable for downstream analysis. Across the cited literature, the target modalities include conventional color fundus photography, retinal vessel images, and ultra-wide-field retinal imaging, while the targeted degradations include nonuniform illumination, low and spatially varying contrast, blur, noise, artifacts, and color inconsistency. The field spans handcrafted illumination-aware contrast transforms, fuzzy and histogram-based hybrids, Retinex- and dehazing-inspired formulations, unpaired generative translation, self-supervised frequency-aware restoration, and segmentation-driven feature enhancement. A recurring theme is that “adaptive” enhancement is not a single mechanism but a family of strategies in which the transformation depends on image brightness, local contrast, frequency content, retinal structure, or the geometry of clinically related samples in feature space [1803.00036], [2007.14456], [2502.17850], [2508.19664], [2601.13417], [2409.10966].

## 1. Historical framing and problem definition

Retinal enhancement is typically motivated as a preprocessing stage for vessel segmentation, lesion analysis, diabetic retinopathy grading, or visual interpretation. In one vessel-segmentation line, contrast enhancement is described as “one of the crucial steps” because segmentation reliability depends on consistency of contrast over the image, especially in the presence of thin vessels, optic-disc interference, and the fovea [1803.00036]. Another unsupervised segmentation pipeline similarly emphasizes non-uniform illumination, poor global and local contrast, noise amplification, weak vessel-edge visibility, and optic-disc interference as major causes of segmentation failure [1707.06323]. A later fundus-enhancement study states that retinal fundus images often require enhancement before analysis because segmentation models are sensitive to image appearance, and it reports Dice score increases over a no-enhancement baseline by as much as 0.491 in a challenging multi-task setting [2007.14456].

The scope of the problem has widened with modality. Ultra-wide-field retinal imaging introduces severe peripheral illumination inhomogeneity, blur, and red/green laser-induced color behavior that conventional fundus methods do not explicitly address [2508.19664]. Unpaired enhancement for color fundus photography further reframes the task as improving degraded images while preserving disease-relevant structure, because global distribution matching can disperse clinically related samples and blur disease-class boundaries [2601.13417]. This suggests that adaptive retinal enhancement is best understood as a task-conditioned image transformation problem in which photometric improvement must be balanced against structural and clinical fidelity.

## 2. Classical adaptive enhancement: local illumination, contrast, and vessel visibility

A representative classical formulation is SUACE, a “spatially adaptive linear contrast stretching method” integrated into an improved Tyler Coye segmentation pipeline [1803.00036]. Its local lower and upper bounds are defined by
$$
a(x,y)=g(x,y)-\frac{d}{2}, \qquad b(x,y)=g(x,y)+\frac{d}{2},
$$
where the low-frequency response is
$$
g(x,y)=I(x,y) * f(x,y),
$$
with Gaussian kernel
$$
f(x,y)=\frac{1}{2\pi \sigma^2}\exp\!\left(-\frac{x^2+y^2}{2\sigma^2}\right).
$$
The enhanced image is then obtained by piecewise linear stretching and clipping:
$$
\hat{I}(x,y)=
\begin{cases}
0, & I(x,y)<a(x,y)\\[4pt]
k, & I(x,y)\ge b(x,y)\\[4pt]
\displaystyle \frac{I(x,y)-a(x,y)}{d}\,k, & \text{otherwise}.
\end{cases}
$$
In the reported experiments, the parameters were fixed empirically to $\sigma=7$ and $d=16$, and the downstream pipeline used $a_1=10$, $h=5$, $v=3$, and $a_2=50$ [1803.00036]. On STARE and DRIVE, this configuration achieved the best reported accuracy among the compared enhancement methods, with ACC values of 0.9489 and 0.9411, respectively [1803.00036].

A distinct classical pipeline is based on luminance enhancement in CIELab, anisotropic diffusion filtering, weighted grayscale conversion, curvelet-domain edge enhancement, and optic-disc suppression [1707.06323]. The grayscale conversion is explicitly
$$
I_{\text{weight}} = 0.299\, I_{\text{red}} + 0.587\, I_{\text{green}} + 0.114\, I_{\text{blue}},
$$
and optic-disc removal uses
$$
I_{\text{bg}} = \mathrm{LPF}(I_{\text{weighted}}),
$$
with a median low-pass filter of size $20 \times 20$, followed by
$$
I_{\text{new}} = I_{\text{weighted}} - I_{\text{bg}},
$$
$$
I_t = (I_{\text{new}} \le 0),
$$
and
$$
I_{\text{out}} = \left( I_{\text{edge}} - I_t \right)^c.
$$
The enhancement stages are followed by fuzzy C-means vessel extraction, and the method reports 95.18% segmentation accuracy on DRIVE [1707.06323]. The paper attributes robustness on difficult images to the preprocessing sequence rather than to the clustering stage alone.

These methods exemplify a first major meaning of adaptivity: enhancement parameters are made functions of local illumination, local background, or directional vessel-like detail rather than fixed global constants. A plausible implication is that these pipelines remain relevant when interpretability and lightweight computation are prioritized over learned feature hierarchies.

## 3. Hybrid contrast enhancement with global and local adaptation

A more explicit hybrid formulation appears in the fuzzy-based retinal contrast enhancement method developed for retinal vascular structure segmentation [2502.17850]. The image is processed in HLS color space, and the luminosity values are fuzzified into five linguistic classes—Very Dark, Dark, Medium, Bright, and Very Bright—using Gaussian membership functions
$$
G(x,M,\sigma)=e^{-0.5\left(\frac{x-M}{\sigma}\right)^2}.
$$
The memberships are defined as
$$
\mu_{\text{VeryDark}} = G\!\left(x,\max(-20, M-40), \frac{M}{2}\right),
$$
$$
\mu_{\text{Dark}} = G\!\left(x,0.45M,\frac{M}{4}\right),
$$
$$
\mu_{\text{Medium}} = G\!\left(x,1.1M,\frac{M}{6}\right),
$$
$$
\mu_{\text{Bright}} = G\!\left(x,2.5M-25,\frac{100-M}{4}\right),
$$
$$
\mu_{\text{VeryBright}} = G\!\left(x,125,\frac{100-M}{4}\right).
$$
Here the centers and spreads are controlled by the image-level brightness statistic $M$, so the fuzzy partition shifts with overall image luminosity [2502.17850]. The rule base is deliberately simple: IF input is Dark THEN output is Very Dark; IF input is Medium THEN output is Medium; IF input is Bright THEN output is Very Bright [2502.17850]. After inference, min–max normalization is applied in a typeset-corrupted but clearly intended form,
$$
L_{\text{norm}}=\left(\frac{L-L_{\min}}{L_{\max}-L_{\min}}\right)\times 100.
$$

The fuzzy stage is then blended with CLAHE through
$$
\text{output}_{\text{total}} = w_1 \cdot \text{output}_{\text{fuzzy}} + w_2 \cdot \text{output}_{\text{CLAHE}} - c,
$$
using
$$
w_1=0.6,\qquad w_2=0.8,\qquad c=-0.4.
$$
The method is evaluated on DRIVE against grayscale conversion, histogram equalization, FCE, and CLAHE, and the only reported quantitative result is a human survey involving ten individuals in which “both the FCE and FCE + CLAHE methods outperformed others, achieving a remarkable 88% as the preferred enhancement methods” [2502.17850]. The paper explicitly notes that this 88% is a preference statistic rather than segmentation accuracy or an image-quality metric [2502.17850].

This hybrid scheme makes the distinction between global and local adaptivity explicit. The FCE component is globally adaptive because its membership functions depend on $M$, while CLAHE contributes local histogram equalization over subregions [2502.17850]. This suggests that one persistent design pattern in retinal enhancement is the coupling of image-level photometric adaptation with region-level contrast equalization.

## 4. Retinex, dehazing reinterpretation, and illumination–reflectance modeling

Retinex-style decomposition and related image-formation models provide another major axis of adaptive retinal enhancement. One fundus-specific study proposes a “pixel color amplification theory” and a family of retinal enhancement methods derived from “a novel re-interpretation of the image distortion model underlying dehazing theory,” relating three existing dehazing priors and a novel fourth prior [2007.14456]. The abstract does not provide the equations, but it explicitly states that the resulting family includes whole-image brightening, whole-image darkening, and a novel derivation of Unsharp Masking, and that enhancement composition can act as class balancing on unbalanced and difficult data [2007.14456].

A UWF-specific self-supervised method makes the Retinex structure explicit through its Retinex-guided illumination compensation module, where
$$
I = R \otimes L,
$$
$$
I' = R' \otimes L',
$$
and under the assumption $R'=R$,
$$
I' = I \oslash r,
$$
with
$$
r = L \oslash L'
$$
as the illumination compensation ratio to be estimated by the network [2508.19664]. The same paper adds a color preservation unit based on the 2D discrete wavelet transform with filters
$$
f^{LL}= \begin{pmatrix} 1 & 1\\ 1 & 1 \end{pmatrix}, \quad
f^{LH}= \begin{pmatrix} -1 & -1\\ 1 & 1 \end{pmatrix},
$$
$$
f^{HL}= \begin{pmatrix} -1 & 1\\ -1 & 1 \end{pmatrix}, \quad
f^{HH}= \begin{pmatrix} 1 & -1\\ -1 & 1 \end{pmatrix},
$$
and reconstructs fused features by
$$
\Tilde{F} = \mathcal{W}(F),
$$
$$
F_{w} = \{H_{5}^2(F^*) + H_{1}^2(F^*) \mid  F^* \in \Tilde{F} \},
$$
$$
F_{wt} = \mathcal{W}^{-1}(F_{w}) + F.
$$
This formulation makes illumination correction adaptive to image-specific ratio estimation and frequency structure rather than to a fixed global remapping [2508.19664].

Related low-light literature that is not retina-targeted but is Retinex-relevant introduces additional adaptive ideas. A self-regularized Retinex variant preserves hue and saturation and enhances only the HSV value channel, using
$$
\mathbf{V} =\mathbf{R} \circ \mathbf{I},
$$
$$
\mathbf{R} =\mathbf{V} \circ \mathbf{L},
$$
with inverse illumination $\mathbf{L}=1/\mathbf{I}$, and trains with
$$
L = L_{rc} + L_{ec}+L_{ss}+W_{is}L_{is}
$$
under
$$
L_{rc} =  \|{\mathbf{R}-\mathbf{R^{'}}\|_2^2,
$$
$$
L_{ec} =  \|{\mathbf{R_n}-\mathbf{E}\|_2^2,
$$
$$
L_{ss} =  \|{\nabla\mathbf{R_m}-\nabla\mathbf{V_m}\|_2^2,
$$
$$
L_{is} =  \|{\nabla\mathbf{L}\|_2^2+\|{\nabla\mathbf{L^{'}}\|_2^2.
$$
The paper includes no retinal experiments, but it suggests a route for color-preserving brightness-only enhancement that could be adapted for fundus imaging [2101.00603]. Similarly, a visual-perception low-light model decomposes bright and dark energy and area statistics into adaptive control variables $\beta$ and $\gamma$; this is also not retinally validated, but it suggests that enhancement can be regulated by the spatial distribution of bright and dark content rather than by intensity alone [2005.07343]. These are best read as methodological context rather than direct retinal evidence.

## 5. Learning-based adaptive enhancement: unpaired translation, geometry preservation, and UWF restoration

Recent retinal enhancement methods move from handcrafted adaptive mappings to learned content-adaptive translation. CUNSB-RFIE formulates unpaired fundus enhancement as a Schrödinger Bridge problem between low-quality and high-quality retinal distributions [2409.10966]. The core bridge formulation is
$$
\mathbb{Q}^{SB} = \argmin_{\substack{\mathbb{Q} \in \mathcal{P}(\Omega)}} \mathbb{D}_\mathrm{KL}(\mathbb{Q} \| \mathbb{W})
\quad \text{subject to } \mathbb{Q}_0 = \pi_0,\; \mathbb{Q}_1 = \pi_1,
$$
with the static entropy-regularized OT form
$$
\mathbb{Q}^{SB}_{01} = \argmin_{\gamma \in \Pi(\pi_0,\pi_1)} \mathbb{E}_{(x_0,x_1)\sim\gamma}\big[\|x_0-x_1\|^2\big] - 2\tau H(\gamma),
$$
and conditional bridge state
$$
p(x_t \mid x_0,x_1) \sim \mathcal{N}\big(x_t;\; t x_1 + (1-t)x_0,\; t(1-t)\tau I\big).
$$
Its final objective is
$$
\mathbb{L}_{CUNSB}(\phi,t_i) := \mathbb{L}_{Adv}(\phi,t_i) + \lambda_{SB}\mathbb{L}_{SB}(\phi,t_i) + \lambda_{S}\mathbb{L}_{SSIM}(\phi,t_i) + \lambda_{P}\mathbb{L}_{PatchNCE}(\phi,t_i),
$$
with $N=5$, $\lambda_{SB}=1$, $\lambda_P=1$, $\lambda_S=0.8$, and $\tau=0.01$ [2409.10966]. The generator is U-Net-like and incorporates Dynamic Snake Convolution to preserve tortuous vessels; ablation on EyeQ shows PSNR/SSIM rising from 22.232/0.793 without DSC or regularization to 27.611/0.858 with DSC, PatchNCE, and SSIM [2409.10966]. On downstream DRIVE vessel segmentation, the method reports ROC 0.918, PR 0.771, and SP 0.979, but it is weaker than OTEGAN on IDRiD lesion segmentation, which the paper attributes to smoothing of high-frequency lesion details [2409.10966]. This directly illustrates an important controversy: enhancement that benefits vessel preservation may still underperform on punctate lesions.

SGW-GAN makes the preservation issue more explicit by arguing that enhancement should preserve intra-class geometry in a clinically meaningful feature space rather than only match the high-quality image distribution [2601.13417]. Its generator objective is
$$
\mathcal{L}_G = \lambda_{\mathrm{RMSE}}\mathcal{L}_{\mathrm{RMSE}} + \lambda_{\mathrm{SGW}}\mathcal{L}_{\mathrm{SGW}} + \lambda_{\mathrm{adv}}\mathcal{L}_{\mathrm{adv}},
$$
with
$$
\mathcal{L}_{\mathrm{RMSE}} =
\mathbb{E}_{x \sim \mu_X}\big[\|G(x)-x\|_2^2\big],
$$
$$
\mathcal{L}_{\mathrm{SGW}} =
\mathrm{SGW}^2(\mu_{G(X)}, \mu_Y),
$$
$$
\mathcal{L}_{\mathrm{adv}} =
-\mathbb{E}_{x\sim\mu_X}[D(G(x))].
$$
The SGW term is computed on frozen RETFound embeddings, with
$$
\mathrm{SGW}^2(\mu_X,\mu_Y) = \frac{1}{L}\sum_{\ell=1}^{L} \mathrm{GW}^2_{\theta_\ell}(\mu_X,\mu_Y),
$$
where $L=256$ projections are used in training [2601.13417]. On EyeQ, SGW-GAN achieves SSIM 0.9035, PSNR 23.914, FID 18.141, ACC 0.7814, F1 0.7749, AUC 0.9297, and GW discrepancy 599.92, outperforming the listed baselines on FID, ACC, F1, and GW discrepancy while not winning on SSIM or PSNR [2601.13417]. Its ablation is particularly revealing: removing SGW improves SSIM and PSNR to 0.9288 and 24.417 but worsens GW discrepancy to 847.68 [2601.13417]. The paper interprets this as evidence that standard visual metrics can improve while clinical geometry deteriorates.

For UWF images, frequency-aware self-supervised learning combines frequency-decoupled deblurring and Retinex-guided illumination compensation [2508.19664]. The deblurring module optimizes
$$
L_{deblur} = L_{cont} + \beta L_{MSFR} + \gamma L_{per},
$$
while illumination compensation uses
$$
L_{ic} = \alpha L_{f} + L_{s} + L_{exp},
$$
with $\beta = 0.1$, $\gamma = 0.01$, and $\alpha = 1.5$ [2508.19664]. The model is trained on 400 UWF images and evaluated on 434 images acquired with Optos 200Tx at resolution $3900 \times 3072$ and $200^\circ$ field of view [2508.19664]. Compared with the original images, it improves NIQE from 5.87 to 4.09, BRISQUE from 35.25 to 19.15, PIQE from 16.32 to 8.26, ACC from 57.13 to 69.49, and F1 from 48.24 to 64.07, corresponding to 12.3% ACC and 15.8% F1 gains in diabetic retinopathy grading [2508.19664]. This is presented as the first dedicated UWF enhancement method [2508.19664].

## 6. Segmentation-driven enhancement and downstream task coupling

Not all adaptive retinal enhancement operates at the pixel level. HREFNet is explicitly a vessel-segmentation framework rather than a standalone image enhancer, but its internal design functions as adaptive feature enhancement specialized for retinal vessels [2504.13553]. Its Multi-scale Retina Edge Fusion module computes
$$
\mathbf{D}_1 = \mathrm{ELU}\!\left(\mathrm{Conv}_{3\times3}^{d=1}(\mathbf{Z})\right),
$$
$$
\mathbf{D}_2 = \mathrm{ELU}\!\left(\mathrm{Conv}_{1\times1}^{d=1}\big(\mathrm{Conv}_{3\times3}^{d=1}(\mathbf{Z})\big)\right),
$$
$$
\mathbf{D}_3 = \mathrm{ELU}\!\left(\mathrm{Conv}_{1\times1}^{d=1}\big(\mathrm{Conv}_{3\times3}^{d=3}(\mathbf{Z})\big)\right),
$$
$$
\mathbf{D}_4 = \mathrm{ELU}\!\left(\mathrm{Conv}_{1\times1}^{d=1}\big(\mathrm{Conv}_{3\times3}^{d=5}(\mathbf{Z})\big)\right),
$$
followed by
$$
\mathbf{F}_{\text{edge}} = \mathbf{D}_1 + \mathbf{D}_2 + \mathbf{D}_3 + \mathbf{D}_4,
$$
and SE attention
$$
\mathbf{z} = \mathrm{GlobalAvgPool}(\mathbf{F}_{\text{edge}}),
$$
$$
\mathbf{s} = \sigma\!\left(W_2 \mathrm{ReLU}(W_1 \mathbf{z})\right),
$$
$$
\mathbf{F}_{\text{enhanced}} = \mathbf{F}_{\text{edge}} \cdot \mathbf{s}.
$$
Its directional selective-scan mechanism uses
$$
\alpha_i = \frac{\exp(w_i)}{\sum_{j=1}^{8} \exp(w_j)}, \quad i=1,\dots,8,
$$
$$
\mathbf{X}' = \sum_{i=1}^{8} \alpha_i \mathbf{X}_i.
$$
These operations enhance vessel-aligned edge and continuity information inside the network rather than modifying the input image [2504.13553].

On DRIVE, STARE, and CHASE\_DB1, the method reports Dice/clDice/ACC/AUC/HD95 of 82.14 ± 1.53 / 82.40 ± 4.07 / 96.90 ± 0.24 / 98.56 ± 0.39 / 5.45, 76.29 ± 3.94 / 80.30 ± 3.65 / 96.70 ± 0.78 / 98.05 ± 0.69 / 17.10, and 80.46 ± 1.57 / 82.93 ± 2.50 / 97.36 ± 0.37 / 98.78 ± 0.35 / 10.34 ± 3.17, respectively [2504.13553]. The paper interprets the gains as improved continuity and clearer boundaries in low-contrast regions [2504.13553]. A plausible implication is that, for some retinal tasks, the most effective “enhancement” is not generic contrast modification but structure-aware representation enhancement coupled directly to the segmentation objective.

The same downstream perspective appears in earlier preprocessing papers. The dehazing-inspired color amplification study evaluates enhancement only through a challenging multi-task segmentation problem and reports the largest Dice gain—up to 0.491—on difficult and unbalanced data [2007.14456]. The UWF method evaluates enhancement with both no-reference image-quality metrics and DR grading [2508.19664]. SGW-GAN measures enhancement by DR grading and feature-space GW discrepancy rather than by restoration scores alone [2601.13417]. These examples indicate that retinal enhancement is increasingly judged by its effect on clinical or analytic tasks rather than by appearance alone.

## 7. Evaluation criteria, recurring trade-offs, and open directions

The literature uses heterogeneous evaluation protocols, and the mismatch among them is itself a substantive feature of the field. Classical vessel-oriented work reports TPR, FPR, and ACC through downstream segmentation on STARE and DRIVE [1803.00036], or ACC, sensitivity, and specificity on DRIVE [1707.06323]. Fuzzy–CLAHE work relies primarily on a human preference survey rather than task metrics [2502.17850]. UWF enhancement uses NIQE, BRISQUE, PIQE, ACC, and F1 [2508.19664]. CUNSB-RFIE uses PSNR and SSIM for enhancement and ROC, PR, sensitivity, specificity, and Jaccard for downstream segmentation [2409.10966]. SGW-GAN reports SSIM, PSNR, FID, ACC, F1, AUC, and GW discrepancy [2601.13417]. This variety reflects different conceptions of enhancement quality: perceptual realism, structure preservation, topology preservation, and clinical fidelity are not equivalent objectives.

Several trade-offs recur. First, methods that sharpen or equalize local contrast can improve vessel visibility but amplify noise or distort bright structures. The fuzzy-based method explicitly notes that FCE alone can deteriorate fine vascular detail in high-luminosity regions, especially around the macular area, motivating the CLAHE blend [2502.17850]. Classical comparisons report box-shaped artifacts for CLAHE, random noise for local normalization, and black patches for wavelet- and contourlet-based methods [1803.00036]. Second, generative enhancement can improve realism while harming disease-related structure. SGW-GAN argues that global distribution alignment can blur class boundaries and shows that better SSIM and PSNR do not imply better geometry preservation [2601.13417]. Third, iterative probabilistic translation can preserve low-frequency structure yet oversmooth small lesions. CUNSB-RFIE achieves strong vessel results but underperforms OTEGAN on EX and HE lesion segmentation [2409.10966]. Fourth, enhancement tuned for one structure may not transfer to another; the SUACE paper itself notes that future work could retune the method for fovea, optic disc, and retinal lesions [1803.00036].

Three directions emerge from the cited work. One is modality-specific adaptation: UWF enhancement required a dedicated design with frequency-decoupled deblurring, Retinex-guided illumination compensation, and wavelet-based color preservation [2508.19664]. A second is clinically structured regularization: SGW-GAN introduces sample-geometry preservation in a retinal feature space, while CUNSB-RFIE adds PatchNCE and SSIM to bridge learning [2601.13417], [2409.10966]. A third is the migration from pixel-space enhancement to task-aware structural enhancement, exemplified by HREFNet’s edge and continuity modules [2504.13553]. This suggests that adaptive retinal image enhancement is no longer reducible to contrast manipulation; it increasingly operates as a constrained transformation whose success is determined by whether retinal anatomy, pathology, and label geometry remain intact after enhancement.

In that sense, the field can be organized into three broad paradigms. The first comprises handcrafted illumination- and contrast-aware operators that adapt to local background or global brightness statistics [1803.00036], [1707.06323], [2502.17850]. The second comprises image-formation and decomposition models, including dehazing reinterpretations and Retinex-guided illumination compensation [2007.14456], [2508.19664]. The third comprises learned distributional or representation-level methods that adapt to retinal context, feature geometry, and downstream objectives [2409.10966], [2601.13417], [2504.13553]. The coexistence of these paradigms, and the lack of a single dominant evaluation regime, remains one of the defining characteristics of adaptive retinal image enhancement.

Source: https://www.emergentmind.com/topics/adaptive-retinal-image-enhancement