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 →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
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.
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
- 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.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
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)
- [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.
- [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.
- [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.
- [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)
- [Title] The title contains an unintended space: 'RA WMamba' should be 'RAWMamba'.
- [Section 4.1] The phrase 'We preserves the original splits' should be 'We preserve the original splits'.
- [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'.
- [Section 3.4.1] The notation for the depth-wise convolution is inconsistent: Eq. (15) uses 'DWC' while Figure 3 describes 'DWConv'.
- [References] References [1] and [2] are identical (Brooks et al.) and should be merged or renumbered.
- [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
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
free parameters (3)
- loss balance weight lambda =
0.5
- metadata sampling rate =
1.5%
- number of LTA-Mamba modules =
3
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.
- domain assumption A state space model (Mamba) can propagate sparse metadata information globally across pixel sequences.
- domain assumption The 3D Hilbert curve preserves local spatiotemporal structure sufficient for modeling local tone mapping.
- ad hoc to paper Comparisons against RIR, SAM, INF, and RVD are fair when using numbers reported in other papers.
invented entities (2)
-
Unified Metadata Embedding (UME) module
-
Local Tone-Aware Mamba (LTA-Mamba) module
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 from the paper (1 more)
Reference graph
Works this paper leans on
-
[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
work page 2019
-
[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
work page 2019
-
[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
2023
-
[4]
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
work page 2014
-
[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
work page 2022
-
[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
work page 2025
-
[7]
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
work page 2024
-
[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
work page 2008
Show all 58 references
-
[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
2009
-
[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
2002
-
[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
2003
-
[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
2023 arXiv
-
[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
2021
-
[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
2022
-
[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
2025
-
[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
2018
-
[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,
-
[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
2023
-
[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
2024
-
[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,
-
[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
2016
-
[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
2024
-
[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
2014 arXiv
-
[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
2025
-
[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
2023
-
[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
2024
-
[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
2020
-
[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
2024
-
[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...
2020
-
[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,
-
[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
2024 arXiv
-
[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...
2024
-
[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
2022
-
[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
2016
-
[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
2018
-
[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
2021
-
[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
2024 arXiv
-
[38]
Attention is all you need
A Vaswani. Attention is all you need. Advances in Neural Information Processing Systems, 2017. 3, 5
2017
-
[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
2024
-
[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
2004
-
[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
2020
-
[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
2024
-
[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
2021
-
[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
2021
-
[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
2024
-
[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...
-
[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
2023
-
[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
1905
-
[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
2024 arXiv
-
[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
2021
-
[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
2011
-
[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
2011
-
[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
2022
-
[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
2024
-
[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
2025
-
[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
2024
-
[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
2010 arXiv
-
[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
2023
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.