Pith. sign in

REVIEW 4 major objections 5 minor 68 references

Dark-ISP: Enhancing RAW Image Processing for Low-Light Object Detection

T0 review · 4 major / 5 minor · reviewed 2026-08-04 · deepseek-v4-flash

Pith's one-line read A lightweight, task-driven ISP that processes Bayer RAW images end-to-end outperforms state-of-the-art low-light detectors.

desk verdict Dark-ISP is a genuinely lightweight and well-ablated RAW-to-RGB module, but the SOTA claim is unsupported by the chosen baseline set. read the letter →

arxiv 2509.09183 v1 pith:IQSLNQUJ submitted 2025-09-11 cs.CV cs.AI

classification cs.CVcs.AI
keywords low-lightobjectdetectionRAWimageprocessingBayerdifferentiableISPtonemappingpolynomialbasesself-boostregularizationtask-drivenoptimization
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

This paper attempts to establish that a compact, fully differentiable image signal processor (ISP) can be learned end-to-end from Bayer RAW sensor data to improve object detection in low light. The method splits the traditional ISP into a linear stage—a camera-calibration matrix augmented by local and global attention—and a nonlinear stage that combines physically motivated polynomial tone-mapping bases with pixel-wise coefficients. A Self-Boost loss uses the nonlinear stage's own output as a pseudo-target for the linear stage, promoting cooperation between the two. On three RAW datasets (LOD, NOD, SynCOCO), the approach outperforms state-of-the-art RGB-based and RAW-based detection methods with only a fraction of their parameters.

What carries the argument

The load-bearing machinery is a three-part structure. (1) An adaptive linear transformation P' = (Pl + Pg + P), where P is the fixed 3x4 camera matrix from white balance, binning, and color-space conversion; Pl and Pg are pixel-level and image-level corrections produced by local and global attention over features of the RAW input. (2) A nonlinear component in which a small network predicts pixel-wise coefficient maps C_k, combined with eight non-convex polynomial bases f_k (each of order k, passing through (0,0) and (1,1)) to form an image-adaptive tone-mapping curve F(x). (3) A Self-Boost loss that computes an approximate inverse matrix P̃ = U·I^T (I·I^T)^{-1} from the nonlinear output U an

What would settle it

During training, extract the learned linear matrix P' and compute the pseudo-target P̃ = U·I^T·(I·I^T)^{-1} at each batch. If, after convergence, the mean row-wise cosine similarity between P' and P̃ is low (e.g., below 0.5) while object-detection mAP still exceeds the no-Self-Boost baseline, then the directional-alignment mechanism described by the Self-Boost loss is not the actual cause of the improvement.

Watch

Extended reading notes

Core claim

Dark-ISP's central claim is that the conventional ISP need not be treated as a fixed preprocessing step or a black-box neural network: it can be decomposed into a learnable linear matrix (absorbing white balance, binning, and color transform) and a learnable nonlinear tone mapping built from eight non-convex polynomial bases. Both are trained jointly with the detection loss, so the RAW-to-RGB mapping adapts to the task, and the Self-Boost regularization aligns the two stages. Evidence is the reported detection performance: 70.4 mAP on LOD with ResNet-50 versus 67.9 for the best cited baseline (LIS); higher mAP, mAP50, and mAP75 than all baselines on both cameras of NOD; and 23.1 mAP on SynCO

Load-bearing premise

The Self-Boost loss assumes that the nonlinear module's own output U is a trustworthy stand-in for the ideal sRGB image when guiding the linear module; the mathematical justification for this substitution only works for an independent oracle target, and the paper defers the verification of this proxy's validity to an appendix that was not included.

Editorial extensions

If this is right

  • Direct use of unquantized Bayer RAW avoids the bit-depth and information loss that RGB and RAW-RGB methods suffer, so detection networks pretrained on RGB can be fed sensor data without a fixed ISP.
  • A task-driven ISP can be trained without paired RAW–normal-RGB data; the Self-Boost pseudo-target removes the need for an oracle sRGB image.
  • The entire extra parameter footprint is about 0.5 MB (0.345 MB linear + 0.136 MB nonlinear), making the plugin practical for deployment on resource-constrained devices.
  • The method generalizes across cameras (Canon, Sony, Nikon) and to synthetic RAW data, indicating that the learned modules automatically adapt to different sensor characteristics.
  • The authors expect the same RAW-to-RGB design to benefit other perceptual tasks such as segmentation and tracking.

Reading between the lines

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

  • The Self-Boost idea is a general principle for cascaded differentiable systems: any stage's output can serve as a pseudo-target for an earlier stage, so the same regularizer could be applied to, say, denoising followed by classification, or restoration before segmentation.
  • The explicit non-convex polynomial bases provide a compact, physically interpretable prior for tone mapping; a natural extension is to test these bases in other low-light enhancement networks that currently use unconstrained curve estimation or lookup tables.
  • Because the linear module is content-aware via attention, the method may be sensitive to sensor gain and noise level; a stress test with extreme ISO values or heavy synthetic noise would reveal whether the learned scaling adapts or saturates.
  • A direct comparison between the eight-order polynomial bases and an equal-capacity multi-layer perceptron (the paper compares to ResMLP but not to an MLP of matched parameter count) would isolate the value of the physics-informed basis.
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

4 major / 5 minor

Summary. The paper proposes Dark-ISP, a lightweight learnable ISP module that maps Bayer RAW images to RGB for end-to-end low-light object detection. The ISP is decomposed into a dynamic linear component (white balance, binning, color space transform) with local-global attention, and a nonlinear component that combines pixel-wise coefficient maps with a set of non-convex polynomial bases. A Self-Boost regularization loss aligns the linear mapping with a pseudo-target derived from the nonlinear module's output. Experiments on LOD, NOD, and SynCOCO with RetinaNet/ResNet backbones report improvements over several baselines, e.g., 70.4 versus 67.9 mAP on LOD with ResNet-50.

Significance. If validated, the contribution is practically useful: it demonstrates that a compact, physically structured ISP can replace both hand-crafted pipelines and heavier learned alternatives, and it highlights the value of Bayer RAW input for detection. The explicit use of non-convex polynomial bases, the low parameter counts (0.345 MB for the linear component, 0.136 MB for the nonlinear component), and the evaluation on three datasets are strengths. However, the central claim of beating state-of-the-art RAW-based detection methods is not adequately supported because several directly relevant methods are absent from the comparison, and the Self-Boost mechanism has neither a rigorous derivation nor the promised empirical verification.

major comments (4)
  1. [Sec. 4.1, Tables 1-3] The claim that Dark-ISP 'outperforms state-of-the-art RGB- and RAW-based detection approaches' is supported only by comparisons against default ISP, demosaic, LIS, SID, FeatEnHancer, and RAW-Adapter. The related work in Sec. 2.2 names AdaptiveISP [52], DynamicISP [60], ISP-Teacher [66], and GenISP [41] as the most closely related methods that process Bayer RAW with trainable ISPs for detection; GenISP also introduced the NOD dataset used in Table 2. None of these appears in the evaluation. The reported margins (e.g., 70.4 vs 67.9 mAP on LOD) may not hold against these baselines. The authors should add these comparisons or substantially soften the state-of-the-art claim.
  2. [Sec. 3.3, Eq. (10)-(11)] The Self-Boost pseudo-target is self-referential: P~ = U I^T (I I^T)^-1, where U = F(P'·I) is itself a function of P'. The paper acknowledges that the closed-form solution in Eq. (9) no longer holds and writes 'We verify the validity of these properties in the appendix,' but the appendix is not present in the reviewed manuscript. This is a load-bearing gap: without evidence that the self-referential alignment does not collapse or oscillate, the claimed benefit of Lsb is unsupported. Please provide the promised verification, along with at least an ablation varying lambda, training curves, and the cosine similarity between P' and P~ during optimization.
  3. [Sec. 3.1 and Sec. 3.3, Eqs. (5)-(6) vs (11)] The definition of P' is inconsistent between the linear mapping and the regularization. In Eq. (5)-(6), P' = Pl + Pg + P is a pixel-wise tensor in R^{3x4xHxW} that multiplies I per pixel to produce I' in R^{3xHxW}. However, in Eq. (11), P' is treated as a single 3x4 matrix with row vectors p'_i, and the cosine distance is computed against the global P~. It is unclear whether the loss is averaged over all spatial positions or applied to a global average. The authors should specify the exact tensor contraction used in the implementation; otherwise the method is not reproducible.
  4. [Sec. 4.1, Table 2] The blanket 'outperforms' is not true for every metric and dataset. On the NOD Nikon camera, FeatEnHancer achieves mAP75 30.8 while Dark-ISP reports 30.7, and on the Sony camera the mAP margin over FeatEnHancer is only 1.2 points. The paper does not report variance or statistical significance. Please report repeated runs or error bars, or qualify the conclusion to say that Dark-ISP improves overall mAP on these datasets.
minor comments (5)
  1. [Abstract and throughout] Typos: 'equpped' should be 'equipped' in the Abstract; 'orignal' in Sec. 1; inconsistent spacing in 'RA W' throughout. Please proofread.
  2. [Sec. 3.3] The notation 'L sb' in Eq. (12) and the surrounding text is typeset inconsistently. Use one form consistently.
  3. [Sec. 4, Datasets] The SynCOCO generation is described only as 'Following the pipeline from LIS [10]'. Please provide details on the inverse ISP parameters, noise model values, and any split used, so the synthetic benchmark is reproducible.
  4. [Fig. 2] The caption and the figure labels use 'Lsb' and 'L_sb' interchangeably. Also, the arrows around the Self-Boost path could be clarified to show which tensors are detached (if any) during backpropagation.
  5. [References] Some references are duplicated or inconsistent: [41] GenISP appears as both a method name and a dataset source; [52] AdaptiveISP is listed with two different year entries. Please clean up the bibliography.

Circularity Check

1 steps flagged · score 4.0 of 10

Self-Boost's pseudo-target is defined from the model's own output, making its supervision self-referential; central detection claims still rest on external benchmarks, so circularity is partial.

  1. self definitional [Sec. 3.3, Eqs. (9)-(11)]
    "As a relaxation, we propose a self-supervised approximation by substituting the oracle U ∗ with the nonlinear module's own output, U. ... Critically, because U is a function of P ′, the closed-form solution in Eq. (9) is no longer holds ... We therefore treat U as a pseudo-target and define an approximate linear mapping ˜P := U·I T ·(I·I T )−1. (10)"

    Equation (10) defines the supervision target \tilde P as a function of U, and U is the nonlinear component's output computed from I′ = P′·I (Sec. 3.2). Hence \tilde P depends on P′, the very matrix that Eq. (11) aligns to \tilde P. The oracle target P* of Eq. (9) is replaced by the model's own output, so the loss is a self-consistency condition P′ ≈ g(P′) rather than an externally grounded target. The paper concedes the closed-form solution 'no longer holds' and defers verification of the claimed benefits to an appendix that is absent from the reviewed version, leaving the mechanism's stated advantage unverified. The detection loss supplies external supervision, so the circularity is partial and affects the Self-Boost contribution (68.7→70.4 mAP in Tab. 4), not the full SOTA claim.

full rationale

Dark-ISP's headline results (e.g., 70.4 mAP on LOD) are established by external benchmarks and ablations showing the full model outperforms both baselines and its own sub-modules, so the central SOTA claim does not reduce to the debatable regularizer. The only identifiable circular element is the Self-Boost loss: Eq. (10) builds \tilde P from U, and U is the nonlinear module's output on I′=P′I, so \tilde P depends on P′, the matrix that Eq. (11) aligns to it. The paper openly acknowledges that the oracle closed-form no longer holds and says 'We verify the validity of these properties in the appendix,' but the reviewed copy contains no appendix; this makes the regularizer a transparent self-consistency constraint rather than an independent target. Because the primary supervision is the external detection loss, the circularity is partial and does not invalidate the overall empirical comparison. The omission of closely related RAW-to-detection baselines (AdaptiveISP, DynamicISP, GenISP, ISP-Teacher) from Tables 1–3 is a completeness concern about the 'state-of-the-art' wording, not a circularity, and was not scored as such.

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

The main novel elements are the linear-nonlinear decomposition with polynomial bases and the self-referential Self-Boost loss. The latter relies on the model's own output as a target, which is an ad-hoc assumption. The polynomial bases are under-specified, and key hyperparameters (lambda, warmup, basis shapes) are not reported in the main text.

free parameters (4)
  • polynomial order n = 8
    Order of the polynomial bases in the nonlinear tone-mapping module, chosen by hand (Sec. 3.2, Sec. 4 Implementation Details). This controls the expressiveness of the tone curve and is not derived from data.
  • self-boost weight lambda = 1e-2
    Weight of the Self-Boost loss in Eq. (12), empirically set to 1e-2 for all experiments without an ablation over lambda.
  • warmup epochs N_warmup = not specified
    Number of epochs before activating Lsb (Sec. 3.3). The value is not reported in the main text, leaving a hidden training hyperparameter.
  • polynomial basis functions = not specified
    The exact coefficients of the non-convex polynomial bases f_k are not given; only the constraints f_k(0)=0, f_k(1)=1 and order k are stated (Sec. 3.2, Fig. 3). The concrete basis shapes are a design choice that affects the tone-mapping manifold.
assumptions (5)
  • domain assumption ISP can be decomposed into a linear matrix transform followed by a nonlinear tone mapping
    This is the central modeling assumption in Sec. 3, a standard approximation of camera ISP but not universally accurate (e.g., demosaicing is not exactly linear in all implementations).
  • domain assumption Polynomial bases of order n can approximate the required tone mapping function sufficiently for detection
    Eq. (8) invokes Taylor-like approximation for locally smooth H, but no bound or conditions are given; the choice of n=8 is empirical (Sec. 3.2).
  • ad hoc to paper The nonlinear module's output U is a valid pseudo-target for the linear module
    Sec. 3.3 substitutes U for oracle U* in Eq. (9) and uses the resulting \tilde P to align P'. This self-referential assumption is not independently validated in the main text; the paper defers to the appendix.
  • domain assumption The feature hierarchy hypothesis (deeper layers produce task-closer representations)
    Cited as motivation for Self-Boost in Sec. 3.3 (ref [1]); it is a loose heuristic, not a theorem.
  • standard math Invertibility of I I^T for the least-squares solution
    Eq. (9-10) require (I I^T)^{-1}; in dark, noisy Bayer images the 4x4 Gram matrix may be ill-conditioned, though typically invertible.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Dark-ISP: Enhancing RAW Image Processing for Low-Light Object Detection." pith.science (2026). https://pith.science/paper/IQSLNQUJ

@misc{pith2026250909183,
  author       = {Pith},
  title        = {Pith review of: Dark-ISP: Enhancing RAW Image Processing for Low-Light Object Detection},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/IQSLNQUJ}},
  note         = {Machine review of arXiv:2509.09183}
}
read the original abstract

Low-light Object detection is crucial for many real-world applications but remains challenging due to degraded image quality. While recent studies have shown that RAW images offer superior potential over RGB images, existing approaches either use RAW-RGB images with information loss or employ complex frameworks. To address these, we propose a lightweight and self-adaptive Image Signal Processing (ISP) plugin, Dark-ISP, which directly processes Bayer RAW images in dark environments, enabling seamless end-to-end training for object detection. Our key innovations are: (1) We deconstruct conventional ISP pipelines into sequential linear (sensor calibration) and nonlinear (tone mapping) sub-modules, recasting them as differentiable components optimized through task-driven losses. Each module is equipped with content-aware adaptability and physics-informed priors, enabling automatic RAW-to-RGB conversion aligned with detection objectives. (2) By exploiting the ISP pipeline's intrinsic cascade structure, we devise a Self-Boost mechanism that facilitates cooperation between sub-modules. Through extensive experiments on three RAW image datasets, we demonstrate that our method outperforms state-of-the-art RGB- and RAW-based detection approaches, achieving superior results with minimal parameters in challenging low-light environments.

Figures

Figures reproduced from arXiv: 2509.09183 by the authors.

Figure 1
Figure 1. Thumbnails of different low-light object detection [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. (a) Overview of Dark-ISP. The linear and nonlinear components process Bayer-format inputs [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Non-convex polynomial bases from first-order to eighth [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: Visual comparisons on the LOD dataset. Results are shown on the enhanced images before being fed into the detection network [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Visual comparison of our method with the two top [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Visual comparison of our method with the two top [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

68 extracted references · 5 linked inside Pith

  1. [52]

    Adaptiveisp: Learning an adaptive image signal pro- cessor for object detection.Advances in Neural Information Processing Systems, 37:112598–112623, 2025

    Yujin Wang, Tianyi Xu, Zhang Fan, Tianfan Xue, and Jinwei Gu. Adaptiveisp: Learning an adaptive image signal pro- cessor for object detection.Advances in Neural Information Processing Systems, 37:112598–112623, 2025. 2

  2. [60]

    Dynamicisp: dynamically controlled image signal processor for image recognition

    Masakazu Yoshimura, Junji Otsuka, Atsushi Irie, and Takeshi Ohashi. Dynamicisp: dynamically controlled image signal processor for image recognition. InICCV. 2

  3. [66]

    Isp-teacher: image signal pro- cess with disentanglement regularization for unsupervised domain adaptive dark object detection

    Yin Zhang, Yongqiang Zhang, Zian Zhang, Man Zhang, Rui Tian, and Mingli Ding. Isp-teacher: image signal pro- cess with disentanglement regularization for unsupervised domain adaptive dark object detection. InProceedings of the AAAI Conference on Artificial Intelligence, pages 7387– 7395, 2024. 2

  4. [41]

    Genisp: Neural isp for low-light machine cognition

    Igor Morawski, Yu-An Chen, Yu-Sheng Lin, Shusil Dangi, Kai He, and Winston H Hsu. Genisp: Neural isp for low-light machine cognition. InProceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 630–639, 2022. 2, 5

  5. [1]

    Learning generalized medical image segmentation from decoupled feature queries

    Qi Bi, Jingjun Yi, Hao Zheng, Wei Ji, Yawen Huang, Yuex- iang Li, and Yefeng Zheng. Learning generalized medical image segmentation from decoupled feature queries. InPro- ceedings of the AAAI Conference on Artificial Intelligence, pages 810–818, 2024. 5

  6. [2]

    Unprocessing images for learned raw denoising

    Tim Brooks, Ben Mildenhall, Tianfan Xue, Jiawen Chen, Dillon Sharlet, and Jonathan T Barron. Unprocessing images for learned raw denoising. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 11036–11045, 2019. 2

  7. [3]

    Cascade r-cnn: Delving into high quality object detection

    Zhaowei Cai and Nuno Vasconcelos. Cascade r-cnn: Delving into high quality object detection. In2018 IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, 2018. 4

  8. [4]

    Physics-guided iso-dependent sensor noise modeling for extreme low-light photography

    Yue Cao, Ming Liu, Shuai Liu, Xiaotao Wang, Lei Lei, and Wangmeng Zuo. Physics-guided iso-dependent sensor noise modeling for extreme low-light photography. InProceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5744–5753, 2023. 3

Show all 68 references
  1. [5]

    End-to- end object detection with transformers

    Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to- end object detection with transformers. InEuropean confer- ence on computer vision, pages 213–229. Springer, 2020. 1

  2. [6]

    Learning to see in the dark

    Chen Chen, Qifeng Chen, Jia Xu, and Vladlen Koltun. Learning to see in the dark. InProceedings of the IEEE con- ference on computer vision and pattern recognition, pages 3291–3300, 2018. 3, 6

  3. [7]

    Seeing motion in the dark

    Chen Chen, Qifeng Chen, Minh N Do, and Vladlen Koltun. Seeing motion in the dark. InProceedings of the IEEE/CVF International conference on computer vision, pages 3185– 3194, 2019. 3

  4. [8]

    Masked image training for generalizable deep image denois- ing

    Haoyu Chen, Jinjin Gu, Yihao Liu, Salma Abdel Magid, Chao Dong, Qiong Wang, Hanspeter Pfister, and Lei Zhu. Masked image training for generalizable deep image denois- ing. InProceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 1692–1703,

  5. [9]

    Mmdetection: Open mmlab detection tool- box and benchmark.arXiv preprint arXiv:1906.07155, 2019

    Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng, Ziwei Liu, Jiarui Xu, et al. Mmdetection: Open mmlab detection tool- box and benchmark.arXiv preprint arXiv:1906.07155, 2019. 5

  6. [10]

    Instance segmentation in the dark.International Journal of Computer Vision, 131(8):2198–2218, 2023

    Linwei Chen, Ying Fu, Kaixuan Wei, Dezhi Zheng, and Fe- lix Heide. Instance segmentation in the dark.International Journal of Computer Vision, 131(8):2198–2218, 2023. 1, 2, 6

  7. [11]

    Tsdn: Two-stage raw denoising in the dark.IEEE Transactions on Image Processing, 32:3679– 3689, 2023

    Wenshu Chen, Yujie Huang, Mingyu Wang, Xiaolin Wu, and Xiaoyang Zeng. Tsdn: Two-stage raw denoising in the dark.IEEE Transactions on Image Processing, 32:3679– 3689, 2023. 3

  8. [12]

    Retinex-rawmamba: Bridging demosaicing and denoising for low-light raw image enhancement.arXiv preprint arXiv:2409.07040, 2024

    Xianmin Chen, Peiliang Huang, Xiaoxu Feng, Dingwen Zhang, Longfei Han, and Junwei Han. Retinex-rawmamba: Bridging demosaicing and denoising for low-light raw image enhancement.arXiv preprint arXiv:2409.07040, 2024. 3

  9. [13]

    Nilut: Conditional neural implicit 3d lookup tables for image enhancement

    Marcos V Conde, Javier Vazquez-Corral, Michael S Brown, and Radu Timofte. Nilut: Conditional neural implicit 3d lookup tables for image enhancement. InProceedings of the AAAI Conference on Artificial Intelligence, pages 1371– 1379, 2024. 2

  10. [14]

    Trash to treasure: Low-light object detec- tion via decomposition-and-aggregation

    Xiaohan Cui, Long Ma, Tengyu Ma, Jinyuan Liu, Xin Fan, and Risheng Liu. Trash to treasure: Low-light object detec- tion via decomposition-and-aggregation. InProceedings of the AAAI Conference on Artificial Intelligence, pages 1417– 1425, 2024. 2

  11. [15]

    Raw-adapter: Adapting pre- trained visual model to camera raw images

    Ziteng Cui and Tatsuya Harada. Raw-adapter: Adapting pre- trained visual model to camera raw images. InEuropean Conference on Computer Vision, pages 37–56. Springer,

  12. [16]

    Multitask aet with orthogonal tangent regularity for dark object detection

    Ziteng Cui, Guo-Jun Qi, Lin Gu, Shaodi You, Zenghui Zhang, and Tatsuya Harada. Multitask aet with orthogonal tangent regularity for dark object detection. InProceedings of the IEEE/CVF international conference on computer vi- sion, pages 2553–2562, 2021. 2

  13. [17]

    Diffuseraw: End-to-end generative raw image processing for low-light images.arXiv preprint arXiv:2402.18575, 2023

    Rishit Dagli. Diffuseraw: End-to-end generative raw image processing for low-light images.arXiv preprint arXiv:2402.18575, 2023. 3

  14. [18]

    Mobile computational photography: A tour.Annual review of vision science, 7(1):571–604, 2021

    Mauricio Delbracio, Damien Kelly, Michael S Brown, and Peyman Milanfar. Mobile computational photography: A tour.Annual review of vision science, 7(1):571–604, 2021. 2, 3, 4

  15. [19]

    Dirty pixels: Towards end-to-end image processing and percep- tion.ACM Transactions on Graphics (TOG), 40(3):1–15,

    Steven Diamond, Vincent Sitzmann, Frank Julca-Aguilar, Stephen Boyd, Gordon Wetzstein, and Felix Heide. Dirty pixels: Towards end-to-end image processing and percep- tion.ACM Transactions on Graphics (TOG), 40(3):1–15,

  16. [20]

    Abandoning the bayer-filter to see in the dark

    Xingbo Dong, Wanyan Xu, Zhihui Miao, Lan Ma, Chao Zhang, Jiewen Yang, Zhe Jin, Andrew Beng Jin Teoh, and Jiajun Shen. Abandoning the bayer-filter to see in the dark. InProceedings of the ieee/cvf conference on computer vision and pattern recognition, pages 17431–17440, 2022. 3

  17. [21]

    Boosting object detection with zero-shot day-night domain adaptation

    Zhipeng Du, Miaojing Shi, and Jiankang Deng. Boosting object detection with zero-shot day-night domain adaptation. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 12666–12676, 2024. 2

  18. [22]

    Real- time noise-aware tone mapping.ACM Transactions on Graphics (TOG), 34(6):1–15, 2015

    Gabriel Eilertsen, Rafał K Mantiuk, and Jonas Unger. Real- time noise-aware tone mapping.ACM Transactions on Graphics (TOG), 34(6):1–15, 2015. 2

  19. [23]

    Learnability enhancement for low-light raw denoising: Where paired real data meets noise modeling

    Hansen Feng, Lizhi Wang, Yuzhi Wang, and Hua Huang. Learnability enhancement for low-light raw denoising: Where paired real data meets noise modeling. InProceed- ings of the 30th ACM International Conference on Multime- dia, pages 1436–1444, 2022. 3

  20. [24]

    Fast r-cnn

    Ross Girshick. Fast r-cnn. InProceedings of the IEEE inter- national conference on computer vision, pages 1440–1448,

  21. [25]

    Zero-reference deep curve estimation for low-light image enhancement

    Chunle Guo, Chongyi Li, Jichang Guo, Chen Change Loy, Junhui Hou, Sam Kwong, and Runmin Cong. Zero-reference deep curve estimation for low-light image enhancement. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 1780–1789, 2020. 2, 5, 8

  22. [26]

    Dynamic low-light image enhancement for object detection via end-to-end train- ing

    Haifeng Guo, Tong Lu, and Yirui Wu. Dynamic low-light image enhancement for object detection via end-to-end train- ing. In2020 25th International Conference on Pattern Recognition (ICPR), pages 5611–5618. IEEE, 2021. 2

  23. [27]

    Learn- ing degradation-independent representations for camera isp pipelines

    Yanhui Guo, Fangzhou Luo, and Xiaolin Wu. Learn- ing degradation-independent representations for camera isp pipelines. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 25774– 25783, 2024. 2

  24. [28]

    Featenhancer: En- hancing hierarchical features for object detection and beyond under low-light vision

    Khurram Azeem Hashmi, Goutham Kallempudi, Didier Stricker, and Muhammad Zeshan Afzal. Featenhancer: En- hancing hierarchical features for object detection and beyond under low-light vision. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 6725– ...

  25. [29]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InProceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 5

  26. [30]

    Craft- ing object detection in very low light

    Yang Hong, Kaixuan Wei, Linwei Chen, and Ying Fu. Craft- ing object detection in very low light. InBMVC, page 3,

  27. [31]

    Dnf: Decouple and feedback network for seeing in the dark

    Xin Jin, Ling-Hao Han, Zhen Li, Chun-Le Guo, Zhi Chai, and Chongyi Li. Dnf: Decouple and feedback network for seeing in the dark. InProceedings of the IEEE/CVF con- ference on computer vision and pattern recognition, pages 18135–18144, 2023. 3

  28. [32]

    Lighting every darkness in two pairs: A calibration-free pipeline for raw denoising

    Xin Jin, Jia-Wen Xiao, Ling-Hao Han, Chunle Guo, Ruixun Zhang, Xialei Liu, and Chongyi Li. Lighting every darkness in two pairs: A calibration-free pipeline for raw denoising. InICCV, 2023. 3, 6

  29. [33]

    Paramisp: learned forward and inverse isps using camera parameters.arXiv preprint arXiv:2312.13313, 2023

    Woohyeok Kim, Geonu Kim, Junyong Lee, Seungyong Lee, Seung-Hwan Baek, and Sunghyun Cho. Paramisp: learned forward and inverse isps using camera parameters.arXiv preprint arXiv:2312.13313, 2023. 2

  30. [34]

    Local tone mapping using the k-means algorithm and automatic gamma setting.IEEE Transactions on Consumer Electron- ics, 57(1):209–217, 2011

    Ji Won Lee, Rae-Hong Park, and Soonkeun Chang. Local tone mapping using the k-means algorithm and automatic gamma setting.IEEE Transactions on Consumer Electron- ics, 57(1):209–217, 2011. 2

  31. [35]

    Dualdn: Dual-domain denoising via differ- entiable isp

    Ruikang Li, Yujin Wang, Shiqi Chen, Fan Zhang, Jinwei Gu, and Tianfan Xue. Dualdn: Dual-domain denoising via differ- entiable isp. InEuropean Conference on Computer Vision, pages 160–177. Springer, 2024. 2

  32. [36]

    A dark transformation-equivariant al- gorithm for dark object detection

    Tongxu Lin, Junyu Lin, Jingchao Wang, Zhengnan Deng, and Guoheng Huang. A dark transformation-equivariant al- gorithm for dark object detection. InProceedings of the 2023 4th International Conference on Computing, Networks and Internet of Things, pages 731–735, 2023. 1, 2

  33. [37]

    Microsoft coco: Common objects in context

    Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll´ar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Computer vision–ECCV 2014: 13th European conference, zurich, Switzerland, September 6-12, 2014, proceeding...

  34. [38]

    Focal loss for dense object detection

    Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Doll´ar. Focal loss for dense object detection. InPro- ceedings of the IEEE international conference on computer vision, pages 2980–2988, 2017. 1, 5

  35. [39]

    Un- supervised image denoising in real-world scenarios via self- collaboration parallel generative adversarial branches

    Xin Lin, Chao Ren, Xiao Liu, Jie Huang, and Yinjie Lei. Un- supervised image denoising in real-world scenarios via self- collaboration parallel generative adversarial branches. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 12642–12652, 2023. 3

  36. [40]

    Raw or cooked? object detection on raw images

    William Ljungbergh, Joakim Johnander, Christoffer Peters- son, and Michael Felsberg. Raw or cooked? object detection on raw images. InScandinavian Conference on Image Anal- ysis, pages 374–385. Springer, 2023. 2, 8

  37. [42]

    Hardware-in- the-loop end-to-end optimization of camera image process- ing pipelines

    Ali Mosleh, Avinash Sharma, Emmanuel Onzon, Fahim Mannan, Nicolas Robidoux, and Felix Heide. Hardware-in- the-loop end-to-end optimization of camera image process- ing pipelines. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7529– 7...

  38. [43]

    A novel low light object detection method based on the yolov5 fusion feature enhancement.Scientific reports, 14(1):4486, 2024

    Daxin Peng, Wei Ding, and Tong Zhen. A novel low light object detection method based on the yolov5 fusion feature enhancement.Scientific reports, 14(1):4486, 2024. 2

  39. [44]

    Attention-aware learning for hyperparameter prediction in image processing pipelines

    Haina Qin, Longfei Han, Juan Wang, Congxuan Zhang, Yan- wei Li, Bing Li, and Weiming Hu. Attention-aware learning for hyperparameter prediction in image processing pipelines. InEuropean Conference on Computer Vision, pages 271–

  40. [45]

    You only look once: Unified, real-time object de- tection

    Joseph Redmon, Santosh Divvala, Ross Girshick, and Ali Farhadi. You only look once: Unified, real-time object de- tection. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 779–788, 2016. 1

  41. [46]

    Embeddedpigdet—fast and accurate pig detection for embedded board implementations

    Jihyun Seo, Hanse Ahn, Daewon Kim, Sungju Lee, Yong- wha Chung, and Daihee Park. Embeddedpigdet—fast and accurate pig detection for embedded board implementations. Applied Sciences, 10(8):2878, 2020. 1

  42. [47]

    Sparse r-cnn: End-to-end ob- ject detection with learnable proposals

    Peize Sun, Rufeng Zhang, Yi Jiang, Tao Kong, Chen- feng Xu, Wei Zhan, Masayoshi Tomizuka, Lei Li, Zehuan Yuan, Changhu Wang, et al. Sparse r-cnn: End-to-end ob- ject detection with learnable proposals. InProceedings of the IEEE/CVF conference on computer vision and pattern rec...

  43. [48]

    Attention is all you need.Advances in neural information processing systems, 30, 2017

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszko- reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need.Advances in neural information processing systems, 30, 2017. 4

  44. [49]

    Real-time image en- hancer via learnable spatial-aware 3d lookup tables

    Tao Wang, Yong Li, Jingyang Peng, Yipeng Ma, Xian Wang, Fenglong Song, and Youliang Yan. Real-time image en- hancer via learnable spatial-aware 3d lookup tables. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 2471–2480, 2021. 2

  45. [50]

    Exposurediffusion: Learning to expose for low-light image enhancement

    Yufei Wang, Yi Yu, Wenhan Yang, Lanqing Guo, Lap-Pui Chau, Alex C Kot, and Bihan Wen. Exposurediffusion: Learning to expose for low-light image enhancement. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 12438–12448, 2023. 3

  46. [51]

    Adaptiveisp: Learning an adaptive image signal pro- cessor for object detection.Advances in Neural Information Processing Systems, 37:112598–112623, 2024

    Yujin Wang, Tianyi Xu, Zhang Fan, Tianfan Xue, and Jinwei Gu. Adaptiveisp: Learning an adaptive image signal pro- cessor for object detection.Advances in Neural Information Processing Systems, 37:112598–112623, 2024. 2

  47. [53]

    A physics-based noise formation model for extreme low-light raw denoising

    Kaixuan Wei, Ying Fu, Jiaolong Yang, and Hua Huang. A physics-based noise formation model for extreme low-light raw denoising. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2758– 2767, 2020. 1, 3, 6

  48. [54]

    Physics-based noise modeling for extreme low-light photog- raphy.IEEE Transactions on Pattern Analysis and Machine Intelligence, page 1–1, 2021

    Kaixuan Wei, Ying Fu, Yinqiang Zheng, and Jiaolong Yang. Physics-based noise modeling for extreme low-light photog- raphy.IEEE Transactions on Pattern Analysis and Machine Intelligence, page 1–1, 2021. 1, 6

  49. [55]

    Invertible im- age signal processing

    Yazhou Xing, Zian Qian, and Qifeng Chen. Invertible im- age signal processing. InProceedings of the IEEE/CVF con- ference on computer vision and pattern recognition, pages 6287–6296, 2021. 2

  50. [56]

    Rawformer: An efficient vision transformer for low-light raw image enhancement.IEEE Signal Process- ing Letters, 29:2677–2681, 2022

    Wanyan Xu, Xingbo Dong, Lan Ma, Andrew Beng Jin Teoh, and Zhixian Lin. Rawformer: An efficient vision transformer for low-light raw image enhancement.IEEE Signal Process- ing Letters, 29:2677–2681, 2022. 3

  51. [57]

    Exploring image enhancement for salient object detection in low light images.ACM transactions on multime- dia computing, communications, and applications (TOMM), 17(1s):1–19, 2021

    Xin Xu, Shiqin Wang, Zheng Wang, Xiaolong Zhang, and Ruimin Hu. Exploring image enhancement for salient object detection in low light images.ACM transactions on multime- dia computing, communications, and applications (TOMM), 17(1s):1–19, 2021. 1, 2

  52. [58]

    Best of both worlds: See and understand clearly in the dark

    Xinwei Xue, Jia He, Long Ma, Yi Wang, Xin Fan, and Risheng Liu. Best of both worlds: See and understand clearly in the dark. InProceedings of the 30th ACM Interna- tional Conference on Multimedia, pages 2154–2162, 2022. 1, 2

  53. [59]

    Seplut: Separable image-adaptive lookup tables for real-time image enhancement

    Canqian Yang, Meiguang Jin, Yi Xu, Rui Zhang, Ying Chen, and Huaida Liu. Seplut: Separable image-adaptive lookup tables for real-time image enhancement. InEuropean Con- ference on Computer Vision, pages 201–217. Springer, 2022. 2

  54. [61]

    Cycleisp: Real image restoration via improved data synthesis

    Syed Waqas Zamir, Aditya Arora, Salman Khan, Munawar Hayat, Fahad Shahbaz Khan, Ming-Hsuan Yang, and Ling Shao. Cycleisp: Real image restoration via improved data synthesis. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 2696–2705,

  55. [62]

    Learning image-adaptive 3d lookup tables for high perfor- mance photo enhancement in real-time.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(4), 2020

    Hui Zeng, Jianrui Cai, Lida Li, Zisheng Cao, and Lei Zhang. Learning image-adaptive 3d lookup tables for high perfor- mance photo enhancement in real-time.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(4), 2020. 2, 8

  56. [63]

    Towards general low- light raw noise synthesis and modeling

    Feng Zhang, Bin Xu, Zhiqiang Li, Xinran Liu, Qingbo Lu, Changxin Gao, and Nong Sang. Towards general low- light raw noise synthesis and modeling. InProceedings of the IEEE/CVF international conference on computer vision, pages 10820–10830, 2023. 3

  57. [64]

    Featurized query r-cnn

    Wenqiang Zhang, Tianheng Cheng, Xinggang Wang, Shaoyu Chen, Qian Zhang, and Wenyu Liu. Featurized query r-cnn. arXiv preprint arXiv:2206.06258, 2022. 4

  58. [65]

    Rethinking noise synthesis and modeling in raw denois- ing

    Yi Zhang, Hongwei Qin, Xiaogang Wang, and Hongsheng Li. Rethinking noise synthesis and modeling in raw denois- ing. InProceedings of the IEEE/CVF International Confer- ence on Computer Vision, pages 4593–4601, 2021. 3

  59. [67]

    Restoration for weakly blurred and strongly noisy images

    Xiang Zhu and Peyman Milanfar. Restoration for weakly blurred and strongly noisy images. In2011 IEEE Workshop on Applications of Computer Vision (WACV), pages 103–

  60. [68]

    Deformable detr: Deformable transform- ers for end-to-end object detection.arXiv: Computer Vision and Pattern Recognition,arXiv: Computer Vision and Pat- tern Recognition, 2020

    Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable detr: Deformable transform- ers for end-to-end object detection.arXiv: Computer Vision and Pattern Recognition,arXiv: Computer Vision and Pat- tern Recognition, 2020. 4

Pith tools

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