Pith. sign in

REVIEW 4 major objections 5 minor 2 cited by

Towards RAW Object Detection in Diverse Conditions

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

Pith's one-line read Detectors pre-trained on synthetic RAW sensor data outperform sRGB-pretrained models on a new 62-category adverse-weather benchmark, with the largest gains in rain.

desk verdict Solid new RAW detection benchmark; the pre-training gain is confounded with brightness/noise augmentation, so the causal claim needs a control. read the letter →

arxiv 2411.15678 v1 pith:HPW4T26G submitted 2024-11-24 cs.CV

classification cs.CV
keywords RAWobjectdetectionAODRawadverseconditionspre-trainingcross-domaindistillationunprocessingbenchmarkneuralISP
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 establish that object detectors should be trained on unprocessed camera sensor data (RAW) instead of on the 8-bit processed images (sRGB) that conventional datasets use, because the processing step that creates sRGB discards information that matters in rain, fog, and low light. To make this testable, it introduces AODRaw, a dataset of 7,785 real RAW images with 135,601 annotated objects across 62 categories and nine combined light and weather conditions. The central finding is that pre-training on synthetic RAW versions of ImageNet, with knowledge distilled from an sRGB-pretrained teacher, raises Cascade R-CNN with a ConvNeXt-T backbone from 33.7% to 34.8% average precision (AP) on RAW detection, a 1.1-point gain over sRGB pre-training, and the largest gains appear in rain. If this is right, RAW pre-training is a cheap route to more robust object detection that needs no extra image-processing modules.

What carries the argument

The load-bearing mechanism is a paired recipe: synthetic ImageNet-RAW pre-training plus cross-domain distillation. Synthetic ImageNet-RAW is produced by the unprocessing method of [2], which reverses an image signal processor to convert sRGB images back to 16-bit RAW-like data and simulates camera noise; because the unprocessing runs inside the data-augmentation pipeline, brightness and noise are randomized each iteration. Cross-domain distillation then trains the RAW-pretrained student with logit-based Kullback-Leibler divergence and feature-based L1 loss against an off-the-shelf sRGB-pretrained teacher of the same architecture, giving the student stable semantic targets that do not vary with the synthesized noise. Together these two pieces let the backbone learn representations that are invariant to brightness and noise before it is fine-tuned on real RAW detection data.

What would settle it

Train the identical detector with sRGB ImageNet pre-training while applying the exact same random brightness and noise augmentation that ImageNet-RAW uses, then fine-tune on AODRaw RAW images; if that control reaches or exceeds 34.8% AP, the claimed RAW-domain advantage is an artifact of the augmentation. A complementary check is to pre-train on a comparably sized set of real RAW images and see whether the gap over sRGB pre-training persists.

Watch

Extended reading notes

Core claim

On its own terms, the paper claims two things. First, the domain gap between sRGB pre-training and RAW fine-tuning is real and costly: a Cascade R-CNN trained on sRGB drops from 34.0% to 28.0% AP when evaluated on RAW, and models pre-trained on sRGB then fine-tuned on RAW underperform models trained and tested entirely in sRGB. Second, pre-training directly in the RAW domain closes most of that gap. Because no large real RAW pre-training set exists, the authors synthesize ImageNet-RAW by unprocessing ImageNet-1K images, inverting the camera pipeline and adding random brightness and shot noise inside the augmentation loop. To help the student cope with noise, they distill logit and feature knowledge from an off-the-shelf sRGB-pretrained teacher. The result is 34.8% AP on AODRaw with Cascade R-CNN and ConvNeXt-T, 1.1 points above sRGB pre-training and 0.8 points above sRGB-based detection, with a 4.8-point gain in rain, achieved without any neural ISP.

Load-bearing premise

The load-bearing premise is that the synthetic ImageNet-RAW images created by unprocessing, with random brightness and simulated shot noise, faithfully represent real camera RAW data well enough that pre-training on them transfers to real AODRaw images; the paper does not include an sRGB pre-training control with the same augmentation schedule, so if that premise fails the reported gains could be an augmentation effect rather than a RAW-domain effect.

Editorial extensions

If this is right

  • A single RAW-pretrained model can serve all nine light and weather conditions at once, eliminating the need for per-condition models or trainable ISP adapters.
  • The benefit of RAW pre-training is concentrated where it matters most: +0.8 AP in low light, +4.8 AP in rain, and +1.2 AP in fog, compared with +0.9 AP in normal conditions.
  • The gains are not tied to one architecture: they appear with Cascade R-CNN and ConvNeXt-T in both down-sampled and sliced-image settings, and the raw data supports real-time YOLO-scale detectors without destroying frame rate.
  • Distillation makes the pre-trained representation measurably more robust to brightness and noise shifts, so downstream fine-tuning starts from a sturdier feature space.

Reading between the lines

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

  • An implication the paper leaves implicit is that the same unprocessing-plus-distillation recipe should transfer to other sensor modalities that lack large labeled datasets, such as multispectral, high-dynamic-range, or polarization imaging; the sRGB teacher supplies semantics while the synthetic sensor data supplies the input distribution.
  • The paper does not report an sRGB pre-training control that applies the same random brightness and noise augmentation to ordinary ImageNet-1K; adding that control would decisively separate the benefit of the RAW input distribution from the benefit of the augmentation schedule.
  • Because the largest gain appears in rain, a natural next experiment is to push the simulated noise and brightness ranges further and test whether detector AP keeps climbing under increasingly extreme synthetic conditions or saturates.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

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 introduces AODRaw, a RAW-image object detection dataset with 7,785 high-resolution images, 135,601 annotated instances across 62 categories, and 9 combinations of light and weather conditions. It benchmarks multiple detection architectures under sRGB and RAW inputs, and proposes pre-training detectors on synthetic RAW images generated from ImageNet via the unprocessing method, augmented with cross-domain knowledge distillation from an off-the-shelf sRGB pre-trained teacher. The central claim is that RAW pre-training improves detection on real RAW images, especially under adverse conditions, without needing neural ISP adapters; the headline result is 34.8% AP for Cascade RCNN/ConvNeXt-T on RAW, versus 33.7% AP with sRGB pre-training.

Significance. The AODRaw dataset is a valuable new resource: it is substantially larger and more diverse than existing RAW detection datasets, with 62 categories and nine condition combinations, and the paper provides a careful statistical analysis of the data. The benchmark results across diverse backbones and detector families are extensive and internally consistent. The proposed pre-training recipe is practical and removes the need for learnable ISP modules at inference time. However, the paper's central causal claim—that the RAW input domain, rather than the accompanying brightness/noise augmentation or the distillation procedure, is responsible for the observed gains—is not yet established by the experiments. The dataset and benchmark alone would support a useful paper; the method claim requires additional controlled comparisons.

major comments (4)
  1. [Section 5.1, 5.2; Table 3] The comparison between RAW pre-training and sRGB pre-training is confounded by the data augmentation schedule. Section 5.1 states that in ImageNet-RAW synthesis, 'the unprocessed operation is inserted into the pipeline of data augmentations. Thus, we can randomly adjust the average brightness and simulated noise in each iteration.' The sRGB pre-training baseline in Table 3 (rows 'sRGB RAW') uses standard ImageNet augmentation without such brightness/noise randomization. Since Figures 5 and 6 show sRGB pre-trained models degrade by 14.0% and 13.1% under these shifts, a robustness gain from the augmentation alone is plausible. The paper needs a control that pre-trains on sRGB ImageNet with the same random brightness/noise augmentation (e.g., applied to the sRGB images) to attribute the reported 1.1% AP improvement to the RAW domain rather than to the augmentation schedule.
  2. [Section 5.2; Table 8] The headline result is also confounded by the cross-domain distillation. The 'RAW RAW' rows in Table 3 correspond to the full proposed method that includes distillation, while the 'sRGB RAW' rows use plain sRGB pre-training without distillation. Table 8 shows that distillation contributes 0.5% AP (34.1% without distillation vs. 34.8% with distillation) within RAW pre-training. To isolate the effect of the RAW domain, the paper should report: (a) RAW pre-training without distillation versus sRGB pre-training with the same augmentation, and (b) sRGB pre-training with the same augmentation and with an analogous distillation from the same teacher. Without these controls, the 1.1% AP gain cannot be attributed to the RAW domain.
  3. [Section 4.1 vs. Section 5.1] There is a mismatch between the pre-training and fine-tuning input domains. Section 4.1 says that real RAW images are 'further processed through gamma correction' before fine-tuning, while Section 5.1 describes synthesizing ImageNet-RAW using the unprocessing method, which produces linear RAW images with simulated noise. The paper does not state whether the synthetic pre-training data is gamma-corrected or linear. If the pre-training uses linear RAW and the fine-tuning uses gamma-corrected RAW, then the two domains differ by more than just the RAW-vs-sRGB distinction, and the term 'RAW pre-training' is ambiguous. The authors should either apply the same gamma correction to the synthetic pre-training data or explicitly justify the mismatch and demonstrate that it does not affect the main comparison.
  4. [Section 3.1] The dataset annotation section provides no information about annotator training, quality control, or inter-annotator agreement. Since AODRaw is a core contribution and is used to evaluate the pre-training method, the reliability of the annotations is essential. The authors should report the annotation protocol, the number of annotators, and a quality metric such as inter-annotator agreement or a manual verification rate on a subset, so that the benchmark results can be trusted as ground truth.
minor comments (5)
  1. [Throughout] The paper contains a recurring typo where 'RAW' appears as 'RA W' (e.g., in the title and several headings); this should be fixed.
  2. [Section 5.1; Figures 5 and 6] The text says 'when reducing the brightness from 791 to 80', but the caption of Figure 5 states the maximum average brightness is 216. These numbers are inconsistent; please clarify the brightness scale and correct the text or figure.
  3. [Table 5] The 'Baseline' row reports 33.4% AP for ConvNeXt-T with sRGB pre-training and RAW fine-tuning, while the analogous row in Table 3 (Cascade RCNN/ConvNeXt-T, 'sRGB RAW') reports 33.7% AP. The discrepancy should be explained, since the reader cannot tell whether the baseline in Table 5 uses a different training recipe or a different definition.
  4. [Section 4.1] The text says 'too tiny objects with an area of less than 32^2 are ignored because they will disappear after down-sampling,' but the object-area thresholds for down-sampling are defined as [0,128^2), [128^2,320^2), and [320^2,+∞). The 32^2 cutoff appears inconsistent with these ranges; please verify the intended threshold.
  5. [Supplementary, Eq. (1)] The KL divergence formula in the supplementary material is typeset as 'yt log yt / ys', which is missing parentheses and the summation over classes; it should be written as sum_i y_t(i) log(y_t(i)/y_s(i)).

Circularity Check

0 steps flagged · score 2.0 of 10

No circular derivation chain: the RAW pre-training gains are empirical measurements, and the only self-citation (YOLO-MS) is a non-load-bearing baseline reference.

full rationale

The paper contains no formal derivation chain whose output is equivalent to an input. The central quantitative claims—RAW pre-training improving Cascade R-CNN + ConvNeXt-T from 34.0/33.7 to 34.8 AP on AODRaw, and the per-condition gains (0.8 APlow, 4.8 APrain, 1.2 APfog)—are measured results on a fixed test set, not constants fitted to that set. The pipeline in Section 5.1 synthesizes ImageNet-RAW using unprocessing [2] and distills from an off-the-shelf sRGB teacher; neither step defines the reported AP in terms of the method's own choices. The dataset is constructed and annotated by the authors and used both to motivate and to evaluate the approach, but that is a benchmark-creation pattern, not a circular reduction. The only author-overlap citation is [6] (YOLO-MS, including author M.-M. Cheng), used as a real-time baseline; it does not carry a load-bearing premise for the RAW-pretraining claim. The main weakness is experimental-design-related: the sRGB pre-training control does not include the same random brightness/noise augmentation as ImageNet-RAW (Section 5.1), so part of the 1.1% AP gain could in principle be augmentation robustness; however, this is a confounding-variable concern, not a circularity. I therefore assign 2 for the benign self-citation, with no circular steps identified.

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

The paper introduces a new dataset and a synthetic pre-training set (ImageNet-RAW), but no new physical or conceptual entities such as forces, particles, or mediators. The free parameters listed are the protocol choices that the reported performance numbers depend on. The axioms are the background assumptions about data fidelity, annotation quality, and framework correctness that the benchmark's validity relies on.

free parameters (3)
  • Random brightness and noise augmentation ranges in ImageNet-RAW synthesis
    Chosen by hand in Section 5.1; values not specified in the text, and they affect the pre-training distribution and the reported robustness results.
  • Down-sampling resolution and slicing settings = 2000x1333; 1280x1280 patches, overlap 300, IoU threshold 0.4
    Section 4.1: evaluation protocol choices that directly affect all reported AP values and the comparison between settings.
  • Small, medium, and large object area thresholds = [0,128^2), [128^2,320^2), [320^2,...) for downsampling; [0,64^2), [64^2,160^2), [160^2,...) for slicing
    Section 4.1: defined by the authors and used for APs, APm, and APl; different thresholds would change the reported numbers.
assumptions (4)
  • domain assumption RAW images preserve information that is lost in sRGB conversion and useful for detection under adverse conditions.
    Section 1: motivates the dataset and the entire approach; stated as fact rather than demonstrated within the paper.
  • domain assumption Synthetic RAW from unprocessing [2] with simulated noise and brightness variation is a sufficient proxy for real RAW in pre-training.
    Section 5.1: central to the pre-training; if synthetic and real RAW diverge, the main result may not transfer.
  • domain assumption MMDetection implementations and the chosen hyperparameters for all detectors are correct and comparable.
    Section 4.1: all benchmarks rely on this; no independent verification is provided in the paper.
  • domain assumption The AODRaw annotations are complete and consistent across 62 categories.
    Section 3.1: annotation quality is not quantified, with no inter-annotator agreement or quality control described.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Towards RAW Object Detection in Diverse Conditions." pith.science (2026). https://pith.science/paper/HPW4T26G

@misc{pith2026241115678,
  author       = {Pith},
  title        = {Pith review of: Towards RAW Object Detection in Diverse Conditions},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HPW4T26G}},
  note         = {Machine review of arXiv:2411.15678}
}
read the original abstract

Existing object detection methods often consider sRGB input, which was compressed from RAW data using ISP originally designed for visualization. However, such compression might lose crucial information for detection, especially under complex light and weather conditions. We introduce the AODRaw dataset, which offers 7,785 high-resolution real RAW images with 135,601 annotated instances spanning 62 categories, capturing a broad range of indoor and outdoor scenes under 9 distinct light and weather conditions. Based on AODRaw that supports RAW and sRGB object detection, we provide a comprehensive benchmark for evaluating current detection methods. We find that sRGB pre-training constrains the potential of RAW object detection due to the domain gap between sRGB and RAW, prompting us to directly pre-train on the RAW domain. However, it is harder for RAW pre-training to learn rich representations than sRGB pre-training due to the camera noise. To assist RAW pre-training, we distill the knowledge from an off-the-shelf model pre-trained on the sRGB domain. As a result, we achieve substantial improvements under diverse and adverse conditions without relying on extra pre-processing modules. Code and dataset are available at https://github.com/lzyhha/AODRaw.

Figures

Figures reproduced from arXiv: 2411.15678 by the authors.

Figure 1
Figure 1. (a) Traditional sRGB-based object detection relies on [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Example of the images in the AODRaw. From top to bottom, we show daylight, low-light, rain, and fog conditions, respectively. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Statistics indicate that our AODRaw dataset contains increased category and instance diversity. [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (7 more)
Figure 4
Figure 4. Figure 4: The distribution of object centers. resulting in 71,782 images and 417,781 instances. The first setting supports faster training, but too tiny objects with an area of less than 322 are ignored because they will disappear after down-sampling. The second requires more ti…
Figure 5
Figure 5. Figure 5: Top-1 accuracy on ImageNet-RAW when synthesizing [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 7
Figure 7. Figure 7: Example of the images in the AODRaw. 3 [PITH_FULL_IMAGE:figures/full_fig_p013_7.png]
Figure 8
Figure 8. Figure 8: Example of the RAW images in the AODRaw. [PITH_FULL_IMAGE:figures/full_fig_p014_8.png]
Figure 9
Figure 9. Figure 9: Distribution of the number of categories in images of each condition. The horizontal axis represents the number of categories. [PITH_FULL_IMAGE:figures/full_fig_p015_9.png]
Figure 10
Figure 10. Figure 10: Distribution of the number of instances in images of each condition. The horizontal axis represents the number of instances. [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]
Figure 11
Figure 11. Figure 11: Relative bounding box size q box area image area of each condition. The horizontal axis represents the relative bounding box size. 6 [PITH_FULL_IMAGE:figures/full_fig_p016_11.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. UNICE: Training A Universal Image Contrast Enhancer

    cs.CV 2025-07 conditional novelty 6.0 of 10

    UNICE trains a two-stage model to generate and fuse a pseudo multi-exposure sequence from one image, generalizing across four contrast-enhancement tasks without human labels.

  2. Depth Anything at Any Condition

    cs.CV 2025-07 conditional novelty 5.0 of 10

    A fine-tuned Depth Anything V2 model using perturbation consistency and spatial distance constraints improves monocular depth estimation under adverse conditions without any labeled data.

Reference graph

Works this paper leans on

42 extracted references · 33 canonical work pages · cited by 2 Pith papers

  1. [1]

    Seeing through fog without seeing fog: Deep multimodal sensor fu- sion in unseen adverse weather

    Mario Bijelic, Tobias Gruber, Fahim Mannan, Florian Kraus, Werner Ritter, Klaus Dietmayer, and Felix Heide. Seeing through fog without seeing fog: Deep multimodal sensor fu- sion in unseen adverse weather. In CVPR, 2020. 3

  2. [2]

    Unprocessing im- ages for learned raw denoising

    Tim Brooks, Ben Mildenhall, Tianfan Xue, Jiawen Chen, Dillon Sharlet, and Jonathan T Barron. Unprocessing im- ages for learned raw denoising. In CVPR, 2019. 6

  3. [3]

    Cascade r-cnn: High quality object detection and instance segmentation

    Zhaowei Cai and Nuno Vasconcelos. Cascade r-cnn: High quality object detection and instance segmentation. IEEE TPAMI, 2019. 2, 5, 6

  4. [4]

    MMDetection: Open mmlab detection toolbox and benchmark

    Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng, Ziwei Liu, Jiarui Xu, Zheng Zhang, Dazhi Cheng, Chenchen Zhu, Tian- heng Cheng, Qijie Zhao, Buyu Li, Xin Lu, Rui Zhu, Yue Wu, Jifeng Dai, Jingdong Wang, Jianping Shi, Wanli Ouyang, Chen Change Loy, and Dahua Lin. MMDetection: Open mmlab detection toolbox and...

  5. [5]

    Instance segmentation in the dark

    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. 2

  6. [6]

    Yolo-ms: Rethinking multi- scale representation learning for real-time object detection

    Yuming Chen, Xinbin Yuan, Ruiqi Wu, Jiabao Wang, Qibin Hou, and Ming-Ming Cheng. Yolo-ms: Rethinking multi- scale representation learning for real-time object detection. arXiv preprint arXiv:2308.05480, 2023. 8

  7. [7]

    Towards large-scale small object detection: Survey and benchmarks

    Gong Cheng, Xiang Yuan, Xiwen Yao, Kebing Yan, Qinghua Zeng, Xingxing Xie, and Junwei Han. Towards large-scale small object detection: Survey and benchmarks. IEEE TPAMI, 45(11):13467–13488, 2023. 5

  8. [8]

    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. In ECCV, 2024. 1, 2, 3, 6, 7

Show all 42 references
  1. [9]

    Dirty pixels: Towards end-to-end image processing and percep- tion

    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 Trans. Graph., 40(3), 2021. 2

  2. [10]

    Everingham, L

    M. Everingham, L. Gool, Christopher K. I. Williams, J. Winn, and Andrew Zisserman. The pascal visual object classes (voc) challenge. IJCV, 88:303–338, 2009. 1, 3

  3. [11]

    YOLOX: Exceeding yolo series in 2021.arXiv preprint arXiv:2107.08430, 2021

    Zheng Ge, Songtao Liu, Feng Wang, Zeming Li, and Jian Sun. YOLOX: Exceeding yolo series in 2021.arXiv preprint arXiv:2107.08430, 2021. 2, 8

  4. [12]

    Gamma cor- rection for digital fringe projection profilometry

    Hongwei Guo, Haitao He, and Mingyi Chen. Gamma cor- rection for digital fringe projection profilometry. Appl. Opt., 43(14):2906–2914, 2004. 7

  5. [13]

    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. In CVPR, 2024. 2

  6. [14]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR,

  7. [15]

    Masked autoencoders are scalable vision learners

    Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Doll´ar, and Ross Girshick. Masked autoencoders are scalable vision learners. In CVPR, 2022. 6

  8. [16]

    Distilling the knowledge in a neural net- work

    Geoffrey Hinton. Distilling the knowledge in a neural net- work. arXiv preprint arXiv:1503.02531, 2015. 7

  9. [17]

    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. In BMVC, 2021. 1, 3, 4

  10. [18]

    YOLO by Ultralytics, 2023

    Glenn Jocher, Ayush Chaurasia, and Jing Qiu. YOLO by Ultralytics, 2023. 8

  11. [19]

    Generalized focal loss: Learning qualified and distributed bounding boxes for dense object detection

    Xiang Li, Wenhai Wang, Lijun Wu, Shuo Chen, Xiaolin Hu, Jun Li, Jinhui Tang, and Jian Yang. Generalized focal loss: Learning qualified and distributed bounding boxes for dense object detection. In NeurIPS, 2020. 5, 6

  12. [20]

    Salman Asif, and Zhan Ma

    Zhihao Li, Ming Lu, Xu Zhang, Xin Feng, M. Salman Asif, and Zhan Ma. Efficient visual computing with camera raw snapshots. IEEE TPAMI, 46(7):4684–4701, 2024. 2, 4

  13. [21]

    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 ECCV, 2014. 1, 2, 3, 5

  14. [22]

    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. In ICCV,

  15. [23]

    Swin transformer: Hierarchical vision transformer using shifted windows

    Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In ICCV, 2021. 6

  16. [24]

    A convnet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feicht- enhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In CVPR, 2022. 2, 6, 7

  17. [25]

    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. In CVPR, 2020. 1, 2, 3

  18. [26]

    Pas- calraw: raw image database for object detection

    Alex Omid-Zohoor, David Ta, and Boris Murmann. Pas- calraw: raw image database for object detection. Stanford Digital Repository, 2014. 1, 3, 4

  19. [27]

    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. In ECCV, 2022. 2

  20. [28]

    Faster r-cnn: Towards real-time object detection with region proposal networks

    Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. IEEE TPAMI, 2017. 2, 5, 6

  21. [29]

    Imagenet large scale visual recognition challenge

    Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, San- jeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. IJCV, 2015. 6

  22. [30]

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

    Peize Sun, Rufeng Zhang, Yi Jiang, Tao Kong, Chenfeng Xu, Wei Zhan, Masayoshi Tomizuka, Lei Li, Zehuan Yuan, Changhu Wang, and Ping Luo. Sparse r-cnn: End-to-end object detection with learnable proposals. In CVPR, 2021. 2, 5, 6

  23. [31]

    Adaptiveisp: Learning an adaptive image signal proces- sor for object detection

    Yujin Wang, Tianyi Xu, Fan Zhang, Tianfan Xue, and Jinwei Gu. Adaptiveisp: Learning an adaptive image signal proces- sor for object detection. In NeurIPS, 2024. 2

  24. [32]

    Contrastive learning rivals masked image modeling in fine-tuning via feature distillation

    Yixuan Wei, Han Hu, Zhenda Xie, Zheng Zhang, Yue Cao, Jianmin Bao, Dong Chen, and Baining Guo. Contrastive learning rivals masked image modeling in fine-tuning via feature distillation. arXiv preprint arXiv:2205.14141, 2022. 7 9

  25. [33]

    Isikdogan, Sushma Rao, Bhavin Nayak, Timo Gerasimow, Aleksandar Sutic, Liron Ain- kedem, and Gilad Michael

    Chyuan-Tyng Wu, Leo F. Isikdogan, Sushma Rao, Bhavin Nayak, Timo Gerasimow, Aleksandar Sutic, Liron Ain- kedem, and Gilad Michael. Visionisp: Repurposing the im- age signal processor for computer vision applications. In ICIP, 2019. 2

  26. [34]

    Toward raw object detection: A new benchmark and a new model

    Ruikang Xu, Chang Chen, Jingyang Peng, Cheng Li, Yibin Huang, Fenglong Song, Youliang Yan, and Zhiwei Xiong. Toward raw object detection: A new benchmark and a new model. In CVPR, 2023. 1, 2, 3, 4, 6, 7, 8

  27. [35]

    Dynamicisp: Dynamically controlled im- age signal processor for image recognition

    Masakazu Yoshimura, Junji Otsuka, Atsushi Irie, and Takeshi Ohashi. Dynamicisp: Dynamically controlled im- age signal processor for image recognition. In ICCV, 2023. 2

  28. [36]

    Reconfigisp: Reconfigurable camera image processing pipeline

    Ke Yu, Zexian Li, Yue Peng, Chen Change Loy, and Jinwei Gu. Reconfigisp: Reconfigurable camera image processing pipeline. In ICCV, 2021. 2, 4

  29. [37]

    Darkvision: a bench- mark for low-light image/video perception

    Bo Zhang, Yuchen Guo, Runzhao Yang, Zhihong Zhang, Ji- ayi Xie, Jinli Suo, and Qionghai Dai. Darkvision: a bench- mark for low-light image/video perception. arXiv preprint arXiv:2301.06269, 2023. 3

  30. [38]

    Deformable detr: Deformable transformers for end-to-end object detection

    Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable detr: Deformable transformers for end-to-end object detection. In ICLR, 2021. 2, 4, 5, 6 10 Towards RA W Object Detection in Diverse Conditions Supplementary Material

  31. [39]

    We collect images under 9 conditions, as shown in Tab

    Statistics of AODRaw More examples from AODRaw. We collect images under 9 conditions, as shown in Tab. 2 of the main paper. Tab. 9 shows a specific example for each condition for a bet- ter understanding. Furthermore, Fig. 7 shows more exam- ples of our AODRaw dataset and the ...

  32. [41]

    For data augmentations, the images are re- sized between 800 and 1024 along the shorter side, while the longer side is no larger than 2048

    Experiments Settings Most hyperparameters follow the COCO dataset in the mmdetection. For data augmentations, the images are re- sized between 800 and 1024 along the shorter side, while the longer side is no larger than 2048. And the RandomFlip is used to augment images. For d...

  33. [42]

    Besides the supervised classification loss func- tion, we use logit-based and feature-based distillation for cross-domain distillation

    Distillation Implementation Method. Besides the supervised classification loss func- tion, we use logit-based and feature-based distillation for cross-domain distillation. For logit-based distillation, we denote zs and zt as the output of student and teacher, re- spectively. z...

  34. [100]

    For cases exceeding 100, since there are fewer images in this range, there is some deviation between several con- ditions and the whole, e.g., the condition of low-light and fog in outdoor scenes, as shown in Fig. 10h. Bounding box size. Fig. 11 shows the distribution of the b...

Pith tools

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