Pith. sign in

REVIEW 4 major objections 6 minor 58 references

RAWMamba: Unified sRGB-to-RAW De-rendering With State Space Model

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

Pith's one-line read A single state-space model unifies sRGB-to-RAW reconstruction for photos and video.

desk verdict A genuinely unified Mamba-based sRGB-to-RAW de-rendering architecture with large reported PSNR gains, but the unqualified state-of-the-art claim is undercut by an unexplained video SSIM regression and third-party baselines. read the letter →

arxiv 2411.11717 v1 pith:2AH3VK74 submitted 2024-11-18 cs.CV

classification cs.CV
keywords sRGB-to-RAWde-renderingRAWreconstructionmetadata-guidedstatespacemodelMambaunifiedimage-videoISPinversionlocaltonemapping
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 argues that sRGB-to-RAW de-rendering—recovering the camera's original linear sensor readings from a processed sRGB image—can be accomplished with one network for both still photos and video. Previous methods relied on task-specific architectures: image de-rendering uses a few sampled RAW pixels as guidance, while video de-rendering uses the first frame of an sRGB-RAW pair as guidance. RAWMamba unifies these by treating every form of guidance as an (sRGB, RAW) pair and learning a mapping from the sRGB side that is then applied to the RAW side. The paper reports that this single framework improves PSNR by 3.37 dB on the CAM image benchmark and by 2.26 dB on the RVD-Part2 video benchmark over the previous best task-specific models, without any online fine-tuning. The authors interpret this as evidence that a metadata-agnostic, state-space-model-based pipeline can replace incompatible image-specific and video-specific de-rendering systems.

What carries the argument

The central object is the Unified Metadata Embedding (UME) module, which converts any metadata type—sampled RAW pixels for images or a first-frame sRGB-RAW pair for video—into a common (sRGB, RAW) pair. UME encodes the target sRGB, the metadata sRGB, and the metadata RAW into a shared feature space, forms a soft affinity matrix $A_1 = \mathrm{Softmax}(F_{\mathrm{srgb}}^T F'_{\mathrm{srgb}})$, and multiplies it by the RAW metadata features to produce a global embedding. A second branch adds position encodings (fixed for images, optical-flow-warped for video) and a deformable transformer offset to produce a local embedding; the two are summed into the final metadata embedding. The other component is LTA-Mamba, a bidirectional state space model with two scanning orders—3D Hilbert for local tone-mapping context and raster line-by-line for global consistency—combined with channel attention to reduce feature redundancy. Together these components turn sparse metadata into dense, globally consistent reconstruction cues that drive the final RAW reconstruction.

What would settle it

Train RAWMamba on the three CAM cameras and then evaluate it on a fourth camera of the same dataset (or on a camera with a materially different ISP) without fine-tuning, comparing its PSNR against a per-camera fine-tuned variant; if the cross-modal transfer claim is correct, the single offline model should stay within a small margin, while a large gap would contradict it. A more direct test is to apply the sRGB-derived affinity matrix alone to warp the RAW metadata toward the target RAW and check whether the warped RAW approximates the ground truth before any learned refinement, which would isolate whether the transfer is doing the work.

Watch

Extended reading notes

Core claim

The central claim is that the alignment mapping between the de-rendering sRGB image and the sRGB part of any metadata (sampled pixels or a first frame) transfers to the RAW domain, because sRGB and RAW are two modalities of the same underlying scene information. Using this mapping, the Unified Metadata Embedding (UME) module computes a global affinity matrix for ISP-wide operations like white balance and gamma correction, plus a locally corrected attention map with optical-flow-adjusted position encodings for local tone mapping, then uses both to pull aligned reference information out of the RAW part of the metadata. The reconstruction side adds a Local Tone-Aware Mamba (LTA-Mamba) module that scans features along a 3D Hilbert curve to capture local spatio-temporal context, then scans line-by-line for global consistency, propagating the sparse metadata cues over the entire image or video. The paper reports state-of-the-art results: 53.13 dB PSNR on the CAM image benchmark and 51.97 dB on the RVD-Part2 video benchmark, outperforming task-specific models without any online learning steps.

Load-bearing premise

The load-bearing premise is that the alignment mapping learned between the sRGB image and the sRGB part of the metadata also holds for the RAW part of the metadata, because sRGB and RAW are treated as two views of the same scene information; if that transfer fails for cameras or ISP pipelines unlike those in the training set, the metadata embedding would be misaligned and the reported gains would not generalize.

Editorial extensions

If this is right

  • One trained model can serve both still and video capture on the same camera, eliminating the need for separate image and video de-rendering deployments.
  • The 2.26 dB video gain over the previous chained model suggests that first-frame metadata can be propagated through long video sequences more effectively with linear-complexity Mamba scanning than with sequential CNN architectures.
  • If the cross-modal UME transfer holds, different metadata formats (sampling rate, first-frame, or other partial RAW cues) can be handled without redesigning the network, simplifying camera-side metadata selection.
  • The local-then-global scan design indicates that explicitly modeling local tone mapping helps invert the ISP even when the available RAW information is extremely sparse, which is directly relevant to low-bandwidth capture scenarios.
  • Because the image benchmark gain of 3.37 dB is obtained by the same unified model that also handles video, the paper's results imply that joint training across the two modalities does not degrade image-side reconstruction quality.

Reading between the lines

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

  • The transfer premise yields a testable prediction: UME should work for metadata types the paper did not try, such as a low-resolution RAW thumbnail or an ISP parameter vector, as long as an (sRGB, RAW) pair can be assembled; treating any partial information as such a pair would be a natural extension.
  • The use of a 3D Hilbert curve for local scanning suggests a spatial-locality prior, so ablating by substituting other space-filling curves (such as serpentine or Morton order) would reveal whether topological locality alone drives the gain or whether the specific curve matters.
  • If the sRGB-to-RAW mapping is truly modality-independent, the same affinity-based alignment could be exported to other paired modalities (e.g., depth-plus-RGB or multispectral pairs), turning UME into a general cross-modal alignment module rather than a de-rendering-specific one.
  • The reported numbers cover three cameras and one video subset, so a broader stress test across many camera ISPs would clarify whether the 'inherently applicable' claim generalizes beyond the training distribution.
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 / 6 minor

Summary. This paper introduces RAWMamba, a unified architecture for sRGB-to-RAW de-rendering that handles both images and videos within a single network design. The method comprises two modules: the Unified Metadata Embedding (UME) module, which aligns sampled pixel metadata (images) or first-frame metadata (videos) with the sRGB input through a global affinity matrix and a local deformable attention mechanism, and the Local Tone-Aware Mamba (LTA-Mamba) module, which uses local (3D Hilbert) and global (raster) scans to propagate the sparse metadata across the whole frame or sequence. The authors report state-of-the-art results on the CAM image benchmark (53.13 dB PSNR vs. 49.76 dB for CAM) and on the RVD-Part2 video benchmark (51.97 dB PSNR vs. 49.71 dB for RVD), along with an ablation of the proposed modules.

Significance. The motivation for a single architecture covering image and video de-rendering is practical and the proposed design is technically sound. The use of a state-space model for long-range metadata propagation is a reasonable extension of recent Mamba-based vision models, and the reported ablations show clear contributions from each module. If the empirical results withstand a careful re-evaluation under a strictly fair protocol, the gains over task-specific baselines are substantial and would make this a strong candidate for publication. However, the video SSIM regression and the reliance on externally reported baseline numbers are concerns that must be addressed before the claims can be fully trusted.

major comments (4)
  1. [Section 4.3, Table 2] RAWMamba reports a PSNR of 51.97 dB on RVD-Part2, exceeding RVD by 2.26 dB, but its SSIM (0.9965) is lower than RVD's (0.9983). Since the training loss in Eq. (18) includes an SSIM term with weight 0.5, this regression is surprising and is not discussed in the paper. Please provide an analysis of this trade-off, verify that the SSIM computation is identical to that used for the RVD baseline (e.g., same handling of 4-channel RAW, same borders), or report additional perceptual metrics that support the claim of higher reconstruction quality.
  2. [Sections 4.2 and 4.3] The comparisons against RIR, SAM, INF, and RVD rely on numbers reproduced or reported by other papers, not on re-runs with the authors' own code. Given the observed SSIM discrepancy, the evaluation protocol could differ between methods. Please either re-run these baselines under the exact same evaluation settings, or provide a detailed description of the protocol (SSIM computation, data pre-processing, border handling, etc.) and ensure it is consistent with the baseline papers.
  3. [Sections 1 and 4.1] The paper claims a 'unified' model for image and video, but the experiments train image and video models separately with different hyperparameters (batch size, epochs, input size). It is not demonstrated that a single set of weights can handle both tasks. Please clarify whether the architecture is unified but the models are task-specific, or provide a joint-training experiment and report the resulting performance.
  4. [Section 3.3] The UME module relies on the assumption that a mapping learned between sRGB data and the sRGB component of metadata is 'inherently applicable to the RAW domain.' This is a strong claim that is not empirically supported. Please provide evidence (e.g., an ablation that uses mismatched metadata, a visualization of the affinity matrix, or a discussion of why this transfer is justified) or temper the statement to reflect that the mapping is learned jointly in an end-to-end framework.
minor comments (6)
  1. [Title] The title contains an unintended space: 'RA WMamba' should be 'RAWMamba'.
  2. [Section 4.1] The phrase 'We preserves the original splits' should be 'We preserve the original splits'.
  3. [Section 3.3] The sentence 'to encode the raw and sRGB images into a shared latent feature space' is ambiguous because both x_srgb and x'_srgb are sRGB for the input and metadata; consider revising to 'to encode the inputs and metadata into a shared latent feature space'.
  4. [Section 3.4.1] The notation for the depth-wise convolution is inconsistent: Eq. (15) uses 'DWC' while Figure 3 describes 'DWConv'.
  5. [References] References [1] and [2] are identical (Brooks et al.) and should be merged or renumbered.
  6. [Section 4.1] The paper does not report model size, FLOPs, or runtime, despite the efficiency motivation for Mamba; please add these numbers to support the efficiency claims.

Circularity Check

0 steps flagged · score 0.0 of 10

Not circular: end-to-end supervised training with held-out splits; the UME transfer assumption is a design assumption, not a definition, and the self-cited RVD baseline is an external comparison point rather than a load-bearing premise.

full rationale

This is a supervised metadata-conditioned reconstruction paper, not a derivation. The network f is trained end-to-end with L = L_mse + 0.5 L_ssim (Eq. 18) against ground-truth RAW y, and tested on held-out splits: CAM uses the same train/validation/test splits as CAM [33], and RVD-Part2 'preserves the original splits of training and test sets.' The metadata (first frame or sampled pixels) is a partial ground-truth input, not a fitted constant; predicting full RAW from partial RAW is interpolation, not a prediction that equals its input by construction. The UME module's statement that 'since sRGB and RAW data represent two different modalities of the same information, this mapping is inherently applicable to the RAW domain as well' is an architectural assumption, not a circular reduction: the mapping is learned, and its validity is judged by held-out PSNR/SSIM. The only self-citation of note is the RVD video benchmark/baseline [54], whose authors overlap with this paper (Wencheng Han, Jianbing Shen). However, the paper uses RVD's reported numbers as an empirical comparison point ('we directly compare our results with those reported in the paper'), not as a premise that defines the method or forces the outcome; the comparison is externally falsifiable and does not reduce the reported improvement to the input. The unaddressed SSIM regression on RVD-Part2 (0.9965 vs RVD's 0.9983 in Table 2) and the 'state-of-the-art' phrasing are empirical/correctness concerns, not circularity. No step in the paper equates an output to an input by definition, fits a parameter and then predicts the fitted quantity, or imports a uniqueness theorem from overlapping-authors work.

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

The paper's central claim rests on a learned mapping between sRGB and metadata, an assumed transfer of that mapping to RAW, and the efficacy of Mamba scans for propagating sparse reference information. No part of the approach is derived from first principles or verified with machine-checked proofs; the numerical results are the only support.

free parameters (3)
  • loss balance weight lambda = 0.5
    Hand-set in Eq. 18 to combine MSE and SSIM losses; no sensitivity analysis is provided.
  • metadata sampling rate = 1.5%
    Inherited from CAM [33] for image experiments; no ablation over this rate is shown.
  • number of LTA-Mamba modules = 3
    Set by the authors; no ablation over this count is shown.
assumptions (4)
  • ad hoc to paper sRGB and RAW are two modalities of the same information, so a mapping learned between sRGB and metadata sRGB is applicable to RAW.
    Invoked in Section 3.3 to justify UME; not proven or empirically verified.
  • domain assumption A state space model (Mamba) can propagate sparse metadata information globally across pixel sequences.
    Assumed in Section 3.4; based on prior Mamba literature, not demonstrated here independently.
  • domain assumption The 3D Hilbert curve preserves local spatiotemporal structure sufficient for modeling local tone mapping.
    Assumed in Section 3.4.1; no analysis of what structure is preserved or lost.
  • ad hoc to paper Comparisons against RIR, SAM, INF, and RVD are fair when using numbers reported in other papers.
    Sections 4.2 and 4.3 rely on third-party reproduced numbers without re-running under identical conditions.
invented entities (2)
  • Unified Metadata Embedding (UME) module
    purpose: Aligns arbitrary metadata types (sampled pixels or first-frame RAW) with the input sRGB to produce a unified metadata embedding.
    Architectural component introduced in this paper; no falsifiable prediction outside its reported performance metrics.
  • Local Tone-Aware Mamba (LTA-Mamba) module
    purpose: Uses local and global scan strategies to propagate sparse metadata information across the image or video.
    Architectural component introduced in this paper; its design is tied to the local tone mapping assumption, but it makes no independently testable prediction.

how reviews work

0 comments
Cite this review

Pith. "Pith review of RAWMamba: Unified sRGB-to-RAW De-rendering With State Space Model." pith.science (2026). https://pith.science/paper/2AH3VK74

@misc{pith2026241111717,
  author       = {Pith},
  title        = {Pith review of: RAWMamba: Unified sRGB-to-RAW De-rendering With State Space Model},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2AH3VK74}},
  note         = {Machine review of arXiv:2411.11717}
}
read the original abstract

Recent advancements in sRGB-to-RAW de-rendering have increasingly emphasized metadata-driven approaches to reconstruct RAW data from sRGB images, supplemented by partial RAW information. In image-based de-rendering, metadata is commonly obtained through sampling, whereas in video tasks, it is typically derived from the initial frame. The distinct metadata requirements necessitate specialized network architectures, leading to architectural incompatibilities that increase deployment complexity. In this paper, we propose RAWMamba, a Mamba-based unified framework developed for sRGB-to-RAW de-rendering across both image and video domains. The core of RAWMamba is the Unified Metadata Embedding (UME) module, which harmonizes diverse metadata types into a unified representation. In detail, a multi-perspective affinity modeling method is proposed to promote the extraction of reference information. In addition, we introduce the Local Tone-Aware Mamba (LTA-Mamba) module, which captures long-range dependencies to enable effective global propagation of metadata. Experimental results demonstrate that the proposed RAWMamba achieves state-of-the-art performance, yielding high-quality RAW data reconstruction.

Figures

Figures reproduced from arXiv: 2411.11717 by the authors.

Figure 1
Figure 1. Comparison with Previous sRGB-to-RAW De￾rendering Approaches. (a) In image de-rendering methods like [25, 33, 36], sampled RAW data is utilized as metadata, fol￾lowed by spatial recovery operations to extract information. (b) For video de-rendering methods [54], the first frame serves as metadata, with a sequential model applied for information extrac￾tion. (c) Our RAWMamba method presents a unified framework capabl… view at source ↗
Figure 2
Figure 2. Overview of the Proposed RAWMamba. In RAWMamba, inputs are processed through the UME module and the main network. The UME module encodes images and metadata into feature spaces, generating global and local metadata embeddings via affinity-based blocks (GEB and LEB). The main network query the metadata embeddings to refine features, which are aggregated input into the LTA￾Mamba module. LTA-Mamba employs local and glo… view at source ↗
Figure 3
Figure 3. The details of the LTA-Mamba module. The LTA￾Mamba module relies on two consecutive Mamba blocks. In the figure, the DWConv block represents a depth-wise convolution layer, while CA denotes a channel attention block. (a) The imple￾mentation of bi-direction mamba. (b) An illustration of the global scan strategy and the local scan strategy. A2 = Softmax (Fsrgb + PE)(F ′⊤ srgb + PE¯ ) √ d + B ! , (11) where d is the di… view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Visual comparisons on image dataset CAM and video dataset RVD-part2. As shown in this figure, our unified model achieves the highest accuracy and lowest error compared to other methods, across both image and video datasets. 4. Experiments 4.1. Experiments setup Dataset…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

58 extracted references · 45 canonical work pages

  1. [1]

    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. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 11036–11045, 2019. 2

  2. [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. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 11036–11045, 2019. 1

  3. [3]

    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

  4. [4]

    Il- luminant estimation for color constancy: why spatial-domain methods work and the role of the color distribution.JOSA A, 31(5):1049–1058, 2014

    Dongliang Cheng, Dilip K Prasad, and Michael S Brown. Il- luminant estimation for color constancy: why spatial-domain methods work and the role of the color distribution.JOSA A, 31(5):1049–1058, 2014. 7

  5. [5]

    Model-based image signal processors via learnable dictionaries

    Marcos V Conde, Steven McDonagh, Matteo Maggioni, Ales Leonardis, and Eduardo P ´erez-Pellitero. Model-based image signal processors via learnable dictionaries. In Pro- ceedings of the AAAI Conference on Artificial Intelligence , pages 481–489, 2022. 2

  6. [6]

    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 European Conference on Computer Vision, pages 37–56, 2025. 1

  7. [7]

    Transformers are ssms: General- ized models and efficient algorithms through structured state space duality

    Tri Dao and Albert Gu. Transformers are ssms: General- ized models and efficient algorithms through structured state space duality. In Forty-first International Conference on Ma- chine Learning, 2024. 3

  8. [8]

    Recovering high dy- namic range radiance maps from photographs

    Paul E Debevec and Jitendra Malik. Recovering high dy- namic range radiance maps from photographs. In ACM SIG- GRAPH 2008 classes, pages 1–10. ACM, 2008. 1, 2

Show all 58 references
  1. [9]

    Imagenet: A large-scale hierarchical image database

    Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE Conference on Computer Vision and Pattern Recognition, pages 248–255, 2009. 7

  2. [10]

    Fast bilateral filtering for the display of high-dynamic-range images

    Fr ´edo Durand and Julie Dorsey. Fast bilateral filtering for the display of high-dynamic-range images. In Proceedings of the 29th Annual Conference on Computer Graphics and Interactive Techniques, pages 257–266, 2002. 6

  3. [11]

    Determining the camera response from images: What is knowable? IEEE Transactions on Pattern Analysis and Machine Intelligence, 25(11):1455–1467, 2003

    Michael D Grossberg and Shree K Nayar. Determining the camera response from images: What is knowable? IEEE Transactions on Pattern Analysis and Machine Intelligence, 25(11):1455–1467, 2003. 1, 2

  4. [12]

    Mamba: Linear-time sequence modeling with selective state spaces

    Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023. 2, 3

  5. [13]

    Combining recurrent, convolutional, and continuous-time models with linear state space layers

    Albert Gu, Isys Johnson, Karan Goel, Khaled Saab, Tri Dao, Atri Rudra, and Christopher R ´e. Combining recurrent, convolutional, and continuous-time models with linear state space layers. Advances in Neural Information Processing Systems, 34:572–585, 2021. 3

  6. [14]

    Efficiently mod- eling long sequences with structured state spaces

    Albert Gu, Karan Goel, and Christopher Re. Efficiently mod- eling long sequences with structured state spaces. In Inter- national Conference on Learning Representations, 2022. 3

  7. [15]

    Mambair: A simple baseline for im- age restoration with state-space model

    Hang Guo, Jinmin Li, Tao Dai, Zhihao Ouyang, Xudong Ren, and Shu-Tao Xia. Mambair: A simple baseline for im- age restoration with state-space model. In European Confer- ence on Computer Vision, pages 222–241, 2025. 3

  8. [16]

    Squeeze-and-excitation net- works

    Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation net- works. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 7132–7141, 2018. 6

  9. [17]

    Localmamba: Visual state space model with windowed selective scan

    Tao Huang, Xiaohuan Pei, Shan You, Fei Wang, Chen Qian, and Chang Xu. Localmamba: Visual state space model with windowed selective scan. arXiv preprint arXiv:2403.09338,

  10. [18]

    Expanding synthetic real-world degradations for blind video super resolution

    Mehran Jeelani, Noshaba Cheema, Klaus Illgner-Fehns, Philipp Slusallek, Sunil Jaiswal, et al. Expanding synthetic real-world degradations for blind video super resolution. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 1199–1208, 2023. 1

  11. [19]

    Rbsformer: En- hanced transformer network for raw image super-resolution

    Siyuan Jiang, Senyan Xu, and Xingfu Wang. Rbsformer: En- hanced transformer network for raw image super-resolution. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6479–6488, 2024. 1

  12. [20]

    A new approach to linear filtering and pre- diction problems

    RE KALMAN. A new approach to linear filtering and pre- diction problems. Journal of Basic Engineering , 82:35–45,

  13. [21]

    Hakki Can Karaimer and Michael S. Brown. A software plat- form for manipulating the camera imaging pipeline. In Eu- ropean Conference on Computer Vision, 2016. 7

  14. [22]

    Paramisp: learned forward and inverse isps using camera parameters

    Woohyeok Kim, Geonu Kim, Junyong Lee, Seungyong Lee, Seung-Hwan Baek, and Sunghyun Cho. Paramisp: learned forward and inverse isps using camera parameters. In Pro- ceedings of IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 26067–26076, 2024. 2

  15. [23]

    Adam: A method for stochastic opti- mization

    Diederik P Kingma. Adam: A method for stochastic opti- mization. arXiv preprint arXiv:1412.6980, 2014. 7

  16. [24]

    Videomamba: State space model for efficient video understanding

    Kunchang Li, Xinhao Li, Yi Wang, Yinan He, Yali Wang, Limin Wang, and Yu Qiao. Videomamba: State space model for efficient video understanding. In European Conference on Computer Vision, pages 237–255, 2025. 2, 3

  17. [25]

    Metadata- based raw reconstruction via implicit neural functions

    Leyi Li, Huijie Qiao, Qi Ye, and Qinmin Yang. Metadata- based raw reconstruction via implicit neural functions. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 18196–18205, 2023. 1, 2, 3, 8

  18. [26]

    MTMamba: Enhancing multi-task dense scene understanding by mamba-based de- coders

    Baijiong Lin, Weisen Jiang, Pengguang Chen, Yu Zhang, Shu Liu, and Ying-Cong Chen. MTMamba: Enhancing multi-task dense scene understanding by mamba-based de- coders. In European Conference on Computer Vision, 2024. 3

  19. [27]

    Joint demo- saicing and denoising with self guidance

    Lin Liu, Xu Jia, Jianzhuang Liu, and Qi Tian. Joint demo- saicing and denoising with self guidance. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2240–2249, 2020. 1

  20. [28]

    VMamba: Visual state space model

    Yue Liu, Yunjie Tian, Yuzhong Zhao, Hongtian Yu, Lingxi Xie, Yaowei Wang, Qixiang Ye, Jianbin Jiao, and Yunfan Liu. VMamba: Visual state space model. In The Thirty- eighth Annual Conference on Neural Information Processing Systems, 2024. 2, 3, 6

  21. [29]

    9 Single-image hdr reconstruction by learning to reverse the camera pipeline

    Yu-Lun Liu, Wei-Sheng Lai, Yu-Sheng Chen, Yi-Lung Kao, Ming-Hsuan Yang, Yung-Yu Chuang, and Jia-Bin Huang. 9 Single-image hdr reconstruction by learning to reverse the camera pipeline. In Proceedings of the IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition , pag...

  22. [30]

    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 Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 11976–11986,

  23. [31]

    Videomam- bapro: A leap forward for mamba in video understanding

    Hui Lu, Albert Ali Salah, and Ronald Poppe. Videomam- bapro: A leap forward for mamba in video understanding. arXiv preprint arXiv:2406.19006, 2024. 3

  24. [32]

    Logarithmic lenses: Exploring log rgb data for image classification

    Bruce A Maxwell, Sumegha Singhania, Avnish Patel, Rahul Kumar, Heather Fryling, Sihan Li, Haonan Sun, Ping He, and Zewen Li. Logarithmic lenses: Exploring log rgb data for image classification. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognitio...

  25. [33]

    Learning srgb-to-raw-rgb de-rendering with content-aware metadata

    Seonghyeon Nam, Abhijith Punnappurath, Marcus A Brubaker, and Michael S Brown. Learning srgb-to-raw-rgb de-rendering with content-aware metadata. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 17704–17713, 2022. 1, 2, 3, 4, 5, 7, 8

  26. [34]

    Raw image recon- struction using a self-contained srgb-jpeg image with only 64 kb overhead

    Rang MH Nguyen and Michael S Brown. Raw image recon- struction using a self-contained srgb-jpeg image with only 64 kb overhead. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages 1655– 1663, 2016. 2, 3, 8

  27. [35]

    Raw image recon- struction using a self-contained srgb–jpeg image with small memory overhead

    Rang MH Nguyen and Michael S Brown. Raw image recon- struction using a self-contained srgb–jpeg image with small memory overhead. International Journal of Computer Vi- sion, 126:637–650, 2018. 3

  28. [36]

    Spatially aware metadata for raw reconstruction

    Abhijith Punnappurath and Michael S Brown. Spatially aware metadata for raw reconstruction. InProceedings of the IEEE/CVF winter conference on applications of computer vi- sion, pages 218–226, 2021. 1, 2, 3, 4, 8

  29. [37]

    Vmambair: Vi- sual state space model for image restoration

    Yuan Shi, Bin Xia, Xiaoyu Jin, Xing Wang, Tianyu Zhao, Xin Xia, Xuefeng Xiao, and Wenming Yang. Vmambair: Vi- sual state space model for image restoration. arXiv preprint arXiv:2403.11423, 2024. 3

  30. [38]

    Attention is all you need

    A Vaswani. Attention is all you need. Advances in Neural Information Processing Systems, 2017. 3, 5

  31. [39]

    Beyond learned metadata-based raw image reconstruction

    Yufei Wang, Yi Yu, Wenhan Yang, Lanqing Guo, Lap- Pui Chau, Alex C Kot, and Bihan Wen. Beyond learned metadata-based raw image reconstruction. International Journal of Computer Vision, pages 1–20, 2024. 3

  32. [40]

    Image quality assessment: from error visibility to structural similarity

    Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Si- moncelli. Image quality assessment: from error visibility to structural similarity. IEEE Transactions on Image Process- ing, 13(4):600–612, 2004. 6

  33. [41]

    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. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 2758– 2767, 2020. 2

  34. [42]

    Rainmamba: Enhanced local- ity learning with state space models for video deraining

    Hongtao Wu, Yijun Yang, Huihui Xu, Weiming Wang, JINNI ZHOU, and Lei Zhu. Rainmamba: Enhanced local- ity learning with state space models for video deraining. In ACM Multimedia 2024, 2024. 3

  35. [43]

    End-to-end learning for joint image demosaicing, denoising and super-resolution

    Wenzhu Xing and Karen Egiazarian. End-to-end learning for joint image demosaicing, denoising and super-resolution. In Proceedings of the IEEE/CVF conference on Computer Vision and Pattern Recognition, pages 3507–3516, 2021. 2

  36. [44]

    Invertible image signal processing

    Yazhou Xing, Zian Qian, and Qifeng Chen. Invertible image signal processing. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 6287–6296, 2021. 1, 2

  37. [45]

    Segmamba: Long-range sequential modeling mamba for 3d medical image segmentation

    Zhaohu Xing, Tian Ye, Yijun Yang, Guang Liu, and Lei Zhu. Segmamba: Long-range sequential modeling mamba for 3d medical image segmentation. InInternational Conference on Medical Image Computing and Computer-Assisted Interven- tion, pages 578–588, 2024. 3

  38. [46]

    Lgrnet: Local-global recip- rocal network for uterine fibroid segmentation in ultrasound videos

    Huihui Xu, Yijun Yang, Angelica I Aviles-Rivero, Guang Yang, Jing Qin, and Lei Zhu. Lgrnet: Local-global recip- rocal network for uterine fibroid segmentation in ultrasound videos. In International Conference on Medical Image Com- puting and Computer-Assisted Intervention, pag...

  39. [47]

    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 Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 13384– 13393, 2023. 2

  40. [48]

    Exploiting raw images for real-scene super-resolution

    Xiangyu Xu, Yongrui Ma, Wenxiu Sun, and Ming-Hsuan Yang. Exploiting raw images for real-scene super-resolution. IEEE Transactions on Pattern Analysis and Machine Intelli- gence, 44(4):1905–1921, 2020. 1

  41. [49]

    Vivim: a video vision mamba for medical video object segmentation

    Yijun Yang, Zhaohu Xing, and Lei Zhu. Vivim: a video vision mamba for medical video object segmentation. arXiv preprint arXiv:2401.14168, 2024. 3

  42. [50]

    Reconfigisp: Reconfigurable camera image process- ing pipeline

    Ke Yu, Zexian Li, Yue Peng, Chen Change Loy, and Jin- wei Gu. Reconfigisp: Reconfigurable camera image process- ing pipeline. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4248–4257, 2021. 2

  43. [51]

    High quality image reconstruction from raw and jpeg image pair

    Lu Yuan and Jian Sun. High quality image reconstruction from raw and jpeg image pair. In2011 International Confer- ence on Computer Vision, pages 2158–2165, 2011. 1, 4

  44. [52]

    High quality image reconstruction from raw and jpeg image pair

    Lu Yuan and Jian Sun. High quality image reconstruction from raw and jpeg image pair. In International Conference on Computer Vision, pages 2158–2165, 2011. 2, 3

  45. [53]

    Real- rawvsr: Real-world raw video super-resolution with a bench- mark dataset

    Huanjing Yue, Zhiming Zhang, and Jingyu Yang. Real- rawvsr: Real-world raw video super-resolution with a bench- mark dataset. In European Conference on Computer Vision, pages 608–624, 2022. 7

  46. [54]

    Leveraging frame affin- ity for srgb-to-raw video de-rendering

    Chen Zhang, Wencheng Han, Yang Zhou, Jianbing Shen, Cheng-zhong Xu, and Wentao Liu. Leveraging frame affin- ity for srgb-to-raw video de-rendering. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 25659–25668, 2024. 1, 2, 3, 4, 5, 7, 8

  47. [55]

    Motion mamba: Efficient and long 10 sequence motion generation

    Zeyu Zhang, Akide Liu, Ian Reid, Richard Hartley, Bohan Zhuang, and Hao Tang. Motion mamba: Efficient and long 10 sequence motion generation. In European Conference on Computer Vision, pages 265–282, 2025. 3

  48. [56]

    Vision mamba: Efficient visual representation learning with bidirectional state space model

    Lianghui Zhu, Bencheng Liao, Qian Zhang, Xinlong Wang, Wenyu Liu, and Xinggang Wang. Vision mamba: Efficient visual representation learning with bidirectional state space model. In Forty-first International Conference on Machine Learning, 2024. 2, 3, 6

  49. [57]

    Deformable detr: Deformable trans- formers for end-to-end object detection

    Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable detr: Deformable trans- formers for end-to-end object detection. arXiv preprint arXiv:2010.04159, 2020. 5

  50. [58]

    Rawhdr: High dynamic range image reconstruction from a single raw im- age

    Yunhao Zou, Chenggang Yan, and Ying Fu. Rawhdr: High dynamic range image reconstruction from a single raw im- age. In Proceedings of the IEEE/CVF International Confer- ence on Computer Vision, pages 12334–12344, 2023. 1 11

Pith tools

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