Pith. sign in

REVIEW 3 major objections 6 minor 2 references

Row-Column Separated Attention Based Low-Light Image/Video Enhancement

T0 review · 3 major / 6 minor · reviewed 2026-08-03 · deepseek-v4-flash

Pith's one-line read Row-column mean and max statistics, fed through a small attention module, can supply the global guidance U-Net-based low-light enhancement lacks, matching larger attention models at a fraction of their size.

desk verdict RCSA is a neat, parameter-light module backed by a credible internal ablation, but the paper's two key benchmark margins are not protocol-matched and likely within noise—needs major revision before its superiority claim can stand. read the letter →

arxiv 2602.07428 v1 pith:RVXVNH3Q submitted 2026-02-07 cs.CV

classification cs.CV
keywords low-lightimageenhancementvideorow-columnattentionglobalcontextU-Nettemporalconsistencymodulelightweightnetwork
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to show that global context for low-light enhancement does not require expensive transformer attention: pooling each row and column of a feature map into mean and maximum summaries, then running a small self-attention over those summaries, is enough to guide local reconstruction. It builds U-RCSANet by stacking three blocks of an improved U-Net plus this Row-Column Separated Attention module, and claims the design reaches 24.77 dB PSNR on the LOL benchmark and 25.72 dB on MIT Adobe FiveK while keeping the model at about 11.9 million parameters—roughly one-eighth the size of a comparable attention-based model. For video, it proposes two adjacent-frame losses, one on local brightness differences and one on frame-difference consistency, and claims these give temporal stability on SDSD without optical flow. A sympathetic reader would care because the proposal is a cheap, size-agnostic alternative to transformer attention, and the module is demonstrated as a plug-in that improves other U-Net-style backbones as well.

What carries the argument

Row-Column Separated Attention (RCSA): from a feature map of size C×H×W, compute F_h_avg, F_w_avg, F_h_max, F_w_max; feed each through softmax attention Φ(x)=Softmax(QK^T/√d)V; multiply the row and column results to get pixel-level attention; blend with a=sigmoid(λ), b=1−sigmoid(λ). This replaces full pixel-to-pixel attention with attention over (2/H+2/W) of the pixels, making it image-size agnostic. Its role is to supply global guidance to the local U-Net features, with the concatenation of U-Net input and output as the module's input.

What would settle it

A controlled re-training of the same U-Net on LOL with RCSA replaced by a parameter-matched pointwise nonlinearity applied to the same row/column summaries (no attention) would show whether the attention operation itself is the source of the gain. Separately, re-running every compared method on the exact 128×128 crops, epoch counts, and loss schedules used here would tell whether the reported margins over published scores are real.

Watch

Extended reading notes

Core claim

The paper's central claim is that row- and column-level statistics of a feature map—its per-row and per-column means and maxima—are a sufficient carrier of the global information that low-light enhancement networks need. In the RCSA module, each of these four summaries is passed through an attention operation with learnable query/key/value projections; the row and column attention outputs are multiplied to produce a pixel-level attention map, and the mean and maximum branches are combined with a per-channel adaptive weight. The improved U-Net around it re-extracts features at skip connections and concatenates encoder and decoder outputs so shallow information can correct deep reconstruction.

Load-bearing premise

The load-bearing premise is that averaging and max-pooling each row and column of an internal feature map preserves enough global context to guide local enhancement; if that premise fails, RCSA is just another feature mixer, and the headline comparisons additionally assume published metrics from other models were obtained under the same training and evaluation protocol.

Editorial extensions

If this is right

  • RCSA can be inserted after a U-Net-style encoder-decoder to provide global guidance without patch-based cropping, so enhancement can be applied at arbitrary input resolutions.
  • The reported ablation implies that the attention module, not just the improved U-Net, is responsible for the large PSNR jump (19.77 to 24.77 with only 0.4M extra parameters).
  • Temporal consistency can be encouraged purely through loss design—local brightness-difference minimization and frame-difference self-similarity—rather than explicit optical flow, and the same losses can augment optical-flow-based training.
  • The module transfers to other backbones: the paper's experiments show combining RCSA with Uformer or plain U-Net improves both models' metrics, suggesting a reusable plug-in.
  • At comparable quality on MIT Adobe FiveK, the model uses roughly one-eighth the parameters of the transformer baseline it is compared with, so the approach points toward low-budget deployment.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If row/column mean and max are truly the carrier of global context, then replacing them with other coarse statistics (variance, median, or learned projections) should not change performance much; a test that varies these summaries could separate "global context" from generic nonlinear feature mixing.
  • The raw comparison to other published scores is untested under identical training conditions, so the practical margin over competitors could shrink or grow in a controlled re-run; the internal ablation is the more controlled evidence.
  • The paper's stated limitation—deterioration on extremely dark, noisy, or mixed-light inputs, and alteration of normal-light inputs—suggests the method learns a low-light-specific mapping rather than a general illumination prior; extending it to normal-light identity preservation would be a natural next step.
  • Because the temporal losses operate on adjacent frames only, a longer-range formulation (e.g., over several frames or with a recurrent memory) is a plausible extension that the paper itself flags as future work.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper proposes U-RCSANet for low-light image and video enhancement. The architecture stacks three shared-weight U-RCSA blocks, each composed of an improved U-Net and a newly introduced Row-Column Separated Attention (RCSA) module. RCSA summarizes the feature map by row-wise and column-wise mean and max pooling, applies softmax attention to these compact summaries, and combines the two attention branches with a per-channel adaptive weight. Two additional loss terms for adjacent video frames, a significant-difference loss and a self-similarity loss, are introduced for temporal stability. Experiments are reported on LOL, MIT-Adobe FiveK, and SDSD, together with ablations, a noise-robustness test, a generalization test on LSRW, and user studies. The paper claims that U-RCSANet achieves state-of-the-art or competitive quantitative results with far fewer parameters than recent attention- and transformer-based models, and that the proposed video losses improve temporal consistency without requiring optical flow.

Significance. If the reported results survive a protocol-matched comparison, the paper makes a useful contribution: the RCSA module is conceptually simple and parameter-efficient, and the internal ablations (Table 5 and Table 6) show large gains over a no-attention baseline and over other lightweight attention modules under a common training pipeline. The public code, the across-dataset generalization experiment, and the noise-robustness analysis are commendable. However, the headline superiority claims currently rest on cross-paper baseline metrics that are not obtained under a common evaluation protocol, and on model-selection choices made using the same test set. The central architectural idea is plausible and the internal evidence is supportive, but the quantitative claims need to be re-established under a unified, independent evaluation before they can be accepted as stated.

major comments (3)
  1. [Sec. 4.1, Tables 1 and 2] The statement 'The metrics of other models in the following experiments are preferentially obtained from published papers' means the headline comparisons are not made under a common protocol. LOL has only 15 test images; at typical per-image PSNR variability, the reported margin over HWMNet (24.77 vs. 24.24, +0.53 dB) is on the order of two standard errors, and the FiveK margin over LLFormer (25.724 vs. 25.753) is 0.029 dB. Differences in color space, border cropping, and full-image vs. patch scoring can easily account for these margins. The authors should rerun all compared methods under one evaluation script and report per-image distributions or confidence intervals, or explicitly downgrade the superiority claims to competitiveness.
  2. [Sec. 4.1, Table 6] The number of U-RCSA blocks (three) and the staged-loss schedule appear to have been selected after inspecting performance on the 15-image LOL test set. Table 6 reports one/two/three/four block results on the same test set, and the text states that the staged loss 'improved both metrics.' This makes the central LOL number partly self-referential: it is a test-set-selected result, not an independent evaluation. Please add a validation split or cross-validation for architectural choices, or show that the selected configuration is stable across held-out partitions.
  3. [Sec. 3.1, Eqs. (3)-(4)] The central premise that row/column mean and max statistics 'represent the global information of the feature map' is asserted rather than tested. Table 5 is a useful same-protocol comparison among lightweight attention modules and shows that RCSA helps, and Table 6 shows that both mean and max branches contribute. However, none of the ablations varies the pooling or aggregation strategy while holding capacity roughly constant (e.g., global average pooling, stride-based downsampling, or a fixed-size attention baseline), so the specific 'global row-column statistics' mechanism is not isolated. Please add such an ablation or temper the global-information claim.
minor comments (6)
  1. [Tables 5 and 7] The no-attention baseline is reported inconsistently: Table 5 gives PSNR 19.768 / SSIM 0.827, while Table 7 gives PSNR 19.77 / SSIM 0.830 for 'Ours w/o RCSA.' Please make the numbers consistent.
  2. [Eq. (4)] The notation is under-specified: the shapes of Q/K/V after applying Φ to F_h_avg and F_w_avg are not stated, and the '⊗' matrix multiplication that yields pixel-level attention is not defined. Please clarify dimensions and state what d is.
  3. [Sec. 4.1] The staged-loss schedule is introduced without a dedicated quantitative table. The text says it 'improved both metrics, in particular, PSNR by 2%,' but the supporting numbers should be reported, ideally in a table or in the main ablation section.
  4. [Sec. 4.3, user study] The statistical statement is unclear: 'All the null hypotheses cannot be rejected at a significance level α of 0.05.' Please specify the exact hypothesis, the test used, and the resulting p-values; as written, the direction of the null hypothesis is unusual and hard to interpret.
  5. [Data availability] The MIT-Adobe FiveK dataset is attributed to reference '[WXF*21]' in the data availability statement; it should cite [BPCD11].
  6. [Fig. 5 caption] The phrase 'can be sent to achieve' should be 'can be seen to achieve' or similar.

Circularity Check

0 steps flagged · score 0.0 of 10

No construction-level circularity; reported concerns are external-validity and test-set-selection issues, not circular reasoning.

full rationale

The paper's central claims are empirical and architectural rather than derivational. Equations (1)-(4) define the U-RCSANet mapping and the RCSA computation (row/column mean and max statistics combined through a learned per-channel weight), and no predicted quantity is defined in terms of the target metric or headline result. The learned weight λ in Eq. (4) is a standard trainable balancing parameter, not a fitted value renamed as prediction. The main potential concerns are (a) that baseline metrics are 'preferentially obtained from published papers' (Sec. 4.1), and (b) that the number of stacked U-RCSA blocks (three) was apparently selected after inspecting LOL test-set results in Table 6, with the same number then reported as the final result in Table 1 and Table 7. These are legitimate methodological threats to fair comparison and to unbiased evaluation, but they are not circular in the required sense: there is no equation or construction by which the reported PSNR/SSIM reduces to the design choice. The ablation study in Table 5 provides same-pipeline evidence that adding RCSA improves results over other attention modules. There are no load-bearing self-citations, imported uniqueness theorems, or ansatz-via-citation chains. Under the stated hard rules, the protocol-matching and test-set-selection issues belong to correctness risk, not to circularity. Therefore no circular step is identified and the circularity score is 0.

Assumptions & free parameters 4 free parameters · 3 assumptions · 0 invented entities

The free parameters are modest: a per-channel balancing weight in RCSA and manually chosen loss weights/coefficients. The main ad hoc assumption is that row/column mean/max statistics are a sufficient global summary, asserted in Sec. 3.1. No new physical entities are postulated.

free parameters (4)
  • per-channel attention balance lambda_c = learned during training
    In Eq. (4), a = sigmoid(lambda) and b = 1 - sigmoid(lambda) per channel; controls the mean/max attention mix. This is a learned parameter, not derived.
  • video-loss weights alpha, beta = 2, 2
    Set by hand in Eq. (12) without sensitivity analysis.
  • TV-loss coefficient in stage 1 = 0.001
    Coefficient in L_stage1 (Eq. 11), chosen manually.
  • U-RCSA block count = 3
    Selected from an ablation on the LOL test set (Table 6); best of 1-4 blocks, so the test set influenced the architecture choice.
assumptions (3)
  • domain assumption Paired low/normal-light training data are well aligned and representative of real low-light conditions.
    Supervised training on LOL/FiveK/SDSD assumes ground-truth pairs are accurate; misalignment would bias PSNR/SSIM.
  • ad hoc to paper Mean and maximum values of rows/columns summarize the global information of a feature map.
    Stated in Sec 3.1 as 'We argue...'; not proven or independently benchmarked. This is the core modeling premise of RCSA.
  • standard math Backpropagation and standard deep learning training assumptions.
    Adam optimizer and standard loss gradients are used; no formal proofs are needed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Row-Column Separated Attention Based Low-Light Image/Video Enhancement." pith.science (2026). https://pith.science/paper/RVXVNH3Q

@misc{pith2026260207428,
  author       = {Pith},
  title        = {Pith review of: Row-Column Separated Attention Based Low-Light Image/Video Enhancement},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/RVXVNH3Q}},
  note         = {Machine review of arXiv:2602.07428}
}
read the original abstract

U-Net structure is widely used for low-light image/video enhancement. The enhanced images result in areas with large local noise and loss of more details without proper guidance for global information. Attention mechanisms can better focus on and use global information. However, attention to images could significantly increase the number of parameters and computations. We propose a Row-Column Separated Attention module (RCSA) inserted after an improved U-Net. The RCSA module's input is the mean and maximum of the row and column of the feature map, which utilizes global information to guide local information with fewer parameters. We propose two temporal loss functions to apply the method to low-light video enhancement and maintain temporal consistency. Extensive experiments on the LOL, MIT Adobe FiveK image, and SDSD video datasets demonstrate the effectiveness of our approach. The code is publicly available at https://github.com/cq-dong/URCSA.

Figures

Figures reproduced from arXiv: 2602.07428 by the authors.

Figure 1
Figure 1. The light flow results of the low and normal light scenes are calculated by the GMflow [XZC∗ 22] model, in which the light flow of the dark scene is more blurred and missing many details. attention results. We propose row-column separated attention to extract global information with fewer parameters and faster train￾ing. Our RCSA module allows direct cross-channel information interaction, obtains pixel-level attenti… view at source ↗
Figure 2
Figure 2. The framework of U-RCSANet. U-RCSANet consists of three U-RCSA blocks with the same parameters. Each U-RCSA block has an improved U-Net and a Row-Column Separated Attention module. is achieving temporal stability of video frames while ensuring the quality of single-frame enhancement. This means avoiding prob￾lems such as flicker and jitter between video frames [XWFJ22a]. Furthermore, obtaining high-quality paired lo… view at source ↗
Figure 3
Figure 3. Row-Column Separated Attention module. Average and maximum attention can be obtained through column mean and maximum value. calculation speed. Our attention module applies to images of any size, as shown in [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (7 more)
Figure 4
Figure 4. Figure 4: The results of dark light image enhancement for different sizes. From right to left, the image sizes are 1512×1036, 768×512, 512×352, and 384×256. The input of mean and maximum can be calculated as follows: Fhavg = 1 w ∑ w i=1 F (C,H,i), Fhmax = w max i F (C,H,i), Fwav…
Figure 5
Figure 5. Figure 5: MIT FiveK dataset low light image, normal light im￾age and enhanced image brightness visualization results, it can be found that the brightness of the enhanced image is consistent with the brightness of the normal light image through the degree of fluc￾tuation of the t…
Figure 6
Figure 6. Figure 6: Comparison of enhancement results of different models in LOL dataset. Here, we choose HWMNet, MAXIM, and classical methods to compare the overall details [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Comparison of enhancement results of different models in the SDSD dataset. Here, we choose MBLLEN and StableLLVE to compare the overall details. Our model can better restore complex details even in very dark areas than other models [PITH_FULL_IMAGE:figures/full_fig_p0…
Figure 8
Figure 8. Figure 8: User study. Comparing our model with the two latest models in 2022 and a classical model on LOL dataset, our model has a higher selection rate [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]
Figure 11
Figure 11. Figure 11: Qualitative noise experiments. We added Gaussian noise after normalizing the image. This figure shows the test results with a standard deviation of 0 to 0.5. The quality of the results begins to suffer when the standard deviation exceeds 0.3. Effectiveness of U-RCSA b…
Figure 12
Figure 12. Figure 12: Two ways of fusion RCSA with Uformer. The blue area is a basic block. If it is a cascade model, there will be three blocks with shared parameters. The © represents channel concatenation, the x@H×W above each component represents the output dimen￾sion of the component,…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

2 extracted references · 2 linked inside Pith

  1. [511]

    URL:https://arxiv.org/abs/ 2003.06792

    Glasgow, United Kingdom. URL:https://arxiv.org/abs/ 2003.06792. 1, 6 [ZAK∗22a] ZAMIRS. W., ARORAA., KHANS., HAYATM., KHAN F. S., YANGM.-H.: Restormer: Efficient transformer for high- resolution image restoration. InProceedings of the IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition (CVPR)(June 2022), pp. 5728–5739. New Orleans.doi:10.1109/...

  2. [2023]

    11 [PGC∗17] PASZKEA., GROSSS., CHINTALAS., CHANANG., YANG E., DEVITOZ., LINZ., DESMAISONA., ANTIGAL., LERERA.: Au- tomatic differentiation in pytorch

    URL:https://arxiv.org/abs/2305.13048,arXiv: 2305.13048. 11 [PGC∗17] PASZKEA., GROSSS., CHINTALAS., CHANANG., YANG E., DEVITOZ., LINZ., DESMAISONA., ANTIGAL., LERERA.: Au- tomatic differentiation in pytorch. URL:https://openreview. net/forum?id=BJJsrmfCZ. 5 [RFB15] RONNEBERGERO., FISCHERP., BROXT.: U-net: Convolu- tional networks for biomedical image segme...

Pith tools

Reviewed August 3, 2026 · model on record in the stance chip above.