REVIEW 2 major objections 4 minor 66 references
Learning Pixel-adaptive Multi-layer Perceptrons for Real-time Image Enhancement
T0 review · 2 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims that storing a distinct tiny 3-8-3 MLP per pixel inside a bilateral grid yields state-of-the-art real-time image enhancement, outperforming 3D LUT and prior bilateral-grid methods on FiveK, PPR10K, and LCDP while…
desk verdict Legitimate new architecture with supporting ablations, but the state-of-the-art claim rests on thin margins and the grid depth and loss weights were tuned on the FiveK test set. 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 load-bearing object is the bilateral grid re-purposed as a parameter store: instead of affine matrices, each grid cell holds the 32 numbers (24 weights and 8 biases) for the first layer and the 27 numbers (24 weights and 3 biases) for the output layer of a 3-8-3 MLP with ReLU activation. Two slicing operations retrieve these per-pixel parameters through trilinear interpolation over the grid's eight neighboring cells, with the first grid's hidden vector feeding a second guidance network that drives the second slicing pass. The grid-decomposition strategy partitions the first grid into four subgrids (one per input color channel, sharing one bias group) and the second into nine subgrids (one per hidden neuron, sharing one bias group), so each guidance-map channel steers its own subgrid. A three-layer U-Net-style NAFNet backbone plus pixel unshuffle produces the grids, and the whole chain is differentiable so the grids learn what the per-pixel MLPs should be.
What would settle it
Train BPAM on the FiveK full-resolution tone-mapping task with grid depth raised from 8 to 64 and spatial downsampling removed, holding everything else fixed; if PSNR does not improve over the reported 25.12 dB, the claim that an 8-level, heavily downsampled grid faithfully represents per-pixel MLP parameters loses its load-bearing status.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that the bilateral grid, long used to store per-pixel affine coefficients for fast enhancement, can instead store the parameters of a small multilayer perceptron so that every pixel effectively runs its own 3-8-3 network with weights drawn from the grid at its spatial and intensity coordinates. The paper argues that affine mappings, not the grid itself, were the limiting factor in prior bilateral-grid methods, and that globally shared MLP weights, not MLPs themselves, limited earlier learning-based color transforms. Its grid-decomposition strategy splits the MLP's weights into per-channel groups held in separate subgrids, with a multi-channel guidance map assigning each group its own slicing coordinate, which the paper says uses the RGB channels fully during retrieval and sharpens parameter estimation. Measured this way, the method reports the best numbers among real-time approaches on FiveK, PPR10K, and LCDP, including the largest margin of 0.55 dB PSNR over the leading LUT-with-bilateral-grid method on full-resolution FiveK tone mapping and a 4K runtime of 27.8 ms.
Load-bearing premise
The method's gains rest on the premise that a bilateral grid with only 8 intensity levels and spatial downsampling factors of 4 to 32 can store per-pixel MLP parameters such that trilinear interpolation of those parameters yields accurate, artifact-free color mappings for every pixel.
Editorial extensions
If this is right
- Real-time image enhancement can combine spatial adaptivity and nonlinear color mapping in a single pass, without the resolution-dependent quality loss the paper attributes to fixed-size 3D LUTs.
- The same per-pixel MLP retrieval recipe generalizes across three distinct tasks, tone mapping, photo retouching, and exposure correction, including the extreme illumination regime of LCDP where LUT-based methods degrade.
- Because the slicing operation is differentiable, the parameter-generation pipeline trains end-to-end, so the grids learn task-specific parameter layouts rather than relying on hand-designed coefficients.
- On 4K inputs the method sustains 36 FPS, which the paper argues places it in the real-time regime competitive with 3D LUT approaches while delivering higher quality on high-resolution images.
Reading between the lines
- The grid-decomposition idea is separable from MLPs: the same subgrid-per-parameter-category trick could sharpen other interpolated operators such as 3D LUT weights or polynomial coefficients by giving each coefficient type its own guidance channel, a transfer the paper does not discuss.
- The second guidance network consumes the hidden-layer vector, coupling the two slicing stages, which suggests an iterative or recurrent extension where later stages refine parameters using features of the intermediate transform, something the current single-pass design does not explore.
- A testable consequence of the representation premise is that if the 8-level intensity grid is genuinely faithful, images with very steep local tonal transitions such as hard shadows and specular highlights should show no banding or blocking at grid boundaries; a stress dataset of such images would probe the limit of that assumption.
- The reported 0.55 dB gain over the strongest LUT rival on full-resolution FiveK suggests the advantage may grow with input resolution, since LUT methods use fixed-size transforms while BPAM's grid scales with the image; plotting PSNR against resolution would test whether the advantage is resolution-driven.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes BPAM, a real-time image enhancement architecture that stores per-pixel MLP parameters in bilateral grids. A low-resolution NAFNet backbone generates two bilateral grids containing the weights and biases of a 3-8-3 MLP; a slicing operation with learned multi-channel guidance maps retrieves per-pixel parameters, and a grid-decomposition strategy places different parameter categories in separate subgrids. The method is evaluated on MIT-Adobe FiveK (tone mapping and photo retouching), PPR10K, and LCDP, reporting state-of-the-art PSNR/SSIM values while processing 4K images at about 36 FPS. Ablations in Table 6 and the supplementary material support the two proposed components.
Significance. If the empirical claims hold, this is a useful architectural contribution: it extends bilateral-grid processing from affine transformations to nonlinear per-pixel MLP mappings while retaining real-time performance, and the grid-decomposition scheme offers a clean way to exploit multi-channel guidance information. The method is clearly specified, ablations support both proposed components, and the authors provide a code repository. The main weakness is the strength of the evidence for the headline comparison: margins over the strongest baseline are small on several tasks, and the manuscript does not demonstrate that these margins are robust to hyperparameter selection or training stochasticity.
major comments (2)
- [Sections 4.1 and Supp. C; Eq. (9)] The hyperparameter-selection protocol is unclear. Section 4.1 describes only a 4500/500 train/test split for FiveK, with no validation split, and Supp. Section C states that the grid depth was chosen by running experiments "on the FiveK dataset to determine the optimal settings." The loss weights in Eq. (9) are likewise described as "empirically set." If these choices were made using the 500 test images, the reported test metrics are optimistically biased. This is load-bearing because the PSNR advantage over LUTBGrid is 0.07 dB in Table 2, 0.09-0.13 dB in Table 3, and 0.24 dB in Table 1 at 480p; only the full-resolution tone-mapping gain of 0.55 dB is large. Please specify the validation protocol used for all hyperparameter choices, or, if none was used, re-select hyperparameters on a held-out split and report test metrics with frozen hyperparameters.
- [Tables 1-4, 6; Supp. Tables 7-8] The paper reports only single-run point estimates, with no error bars, standard deviations, or paired significance tests. Given margins as small as 0.07 dB on FiveK photo retouching and 0.09-0.13 dB on PPR10K, the state-of-the-art claim rests on differences that could easily lie within run-to-run noise. Please report mean and standard deviation over at least three seeds for the main comparisons, or paired-difference statistics against the strongest baseline, and do the same for the ablation results in Table 6 and Supp. Table 8.
minor comments (4)
- [Section 4.2, Table 3] The PPR10K model configuration is not fully reported. Section 4.2 says the model's parameter count was increased to a level comparable to the 11.7M ResNet-18 used by LUT baselines, but Table 3 has no parameter column and the other tables report 624K parameters. Please report the exact architecture and parameter count used for each dataset.
- [Table 6] The "Affine Trans" ablation baseline is under-specified. Please state whether it uses the same two-grid design, the same guidance-map architecture, and the same parameter count as the MLP setting, so that the gain in Table 6 can be attributed to the nonlinear transformation rather than to other architectural differences.
- [Supp. Section C, Table 8] The discussion of MLP depth is internally inconsistent: the text first says increasing the number of intermediate layers degrades performance, then says increasing depth leads to improvement, while Table 8 shows 3-8-8-3 improving PSNR by 0.04 dB over 3-8-3. Please clarify whether "depth" and "number of intermediate layers" refer to the same quantity and revise the explanation accordingly.
- [Eq. (9)] Please define L_ssim precisely (presumably 1 - SSIM) and specify which VGG19 layers are used to compute L_per, since these choices affect reproducibility and the reported ablation results.
Circularity Check
No significant circularity: the architecture's output is not defined in terms of its reported metrics, and no load-bearing self-citation or construction-level reduction is present.
full rationale
This is an empirical architecture paper rather than a formal derivation. The pipeline in Eqs. (7)-(9) computes each output color from the input color through per-pixel MLP weights obtained by trilinear slicing of predicted bilateral grids; no reported quantity (PSNR, SSIM, DeltaE, LPIPS) is defined in terms of those weights, and no fitted constant is renamed as a prediction. The only self-citation is Ref. [39] in Related Work, which descriptively mentions a Fourier reparameterization method and is not load-bearing for any claim. Comparisons are made against external baselines on three public benchmarks. One evaluation-hygiene concern is that Supp. Sec. C selects the bilateral-grid depth by running experiments on the FiveK dataset, while no separate validation split is described in Sec. 4.1, and the loss weights in Eq. (9) are described as 'empirically set'; if those choices were made on the FiveK test split, the reported margins could be optimistically biased. However, this is a test-set overfitting and reproducibility concern, not a self-referential derivation: the model output is not constructed to match the benchmark metric, and the architecture does not reduce to its inputs by construction. Therefore no circular step is established.
Assumptions & free parameters
free parameters (4)
- Per-pixel MLP width and depth =
3-8-3
- Grid depth (number of intensity levels) =
8
- Grid spatial downsampling factors =
1/4 (PPR10K), 1/8 (default), 1/32 (full-res FiveK)
- Loss weighting coefficients =
1.0 for L2, 0.5 for SSIM, 0.005 for VGG perceptual
assumptions (4)
- domain assumption Trilinear interpolation of grid coefficients is differentiable and preserves the edge-aware behavior of the bilateral grid.
- domain assumption MLP parameters can be meaningfully interpolated in the spatial-plus-intensity grid without significant loss of mapping quality.
- domain assumption The combined MSE, SSIM and VGG perceptual loss with fixed weights is a valid proxy for perceptual quality in enhancement.
- domain assumption The public benchmark splits and the reported baselines are representative and not cherry-picked.
invented entities (1)
-
Category-specific subgrids (grid decomposition)
Cite this review
Pith. "Pith review of Learning Pixel-adaptive Multi-layer Perceptrons for Real-time Image Enhancement." pith.science (2026). https://pith.science/paper/QBB6XHCH
@misc{pith2026250712135,
author = {Pith},
title = {Pith review of: Learning Pixel-adaptive Multi-layer Perceptrons for Real-time Image Enhancement},
year = {2026},
howpublished = {\url{https://pith.science/paper/QBB6XHCH}},
note = {Machine review of arXiv:2507.12135}
}
read the original abstract
Deep learning-based bilateral grid processing has emerged as a promising solution for image enhancement, inherently encoding spatial and intensity information while enabling efficient full-resolution processing through slicing operations. However, existing approaches are limited to linear affine transformations, hindering their ability to model complex color relationships. Meanwhile, while multi-layer perceptrons (MLPs) excel at non-linear mappings, traditional MLP-based methods employ globally shared parameters, which is hard to deal with localized variations. To overcome these dual challenges, we propose a Bilateral Grid-based Pixel-Adaptive Multi-layer Perceptron (BPAM) framework. Our approach synergizes the spatial modeling of bilateral grids with the non-linear capabilities of MLPs. Specifically, we generate bilateral grids containing MLP parameters, where each pixel dynamically retrieves its unique transformation parameters and obtain a distinct MLP for color mapping based on spatial coordinates and intensity values. In addition, we propose a novel grid decomposition strategy that categorizes MLP parameters into distinct types stored in separate subgrids. Multi-channel guidance maps are used to extract category-specific parameters from corresponding subgrids, ensuring effective utilization of color information during slicing while guiding precise parameter generation. Extensive experiments on public datasets demonstrate that our method outperforms state-of-the-art methods in performance while maintaining real-time processing capabilities.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
Learning photographic global tonal adjustment with a database of input/output image pairs
Vladimir Bychkovsky, Sylvain Paris, Eric Chan, and Fr ´edo Durand. Learning photographic global tonal adjustment with a database of input/output image pairs. InCVPR 2011, pages 97–104. IEEE, 2011. 5, 1
work page 2011
-
[2]
Chen Chen, Qifeng Chen, Jia Xu, and Vladlen Koltun. Learning to see in the dark. In Proceedings of the IEEE con- ference on computer vision and pattern recognition , pages 3291–3300, 2018. 1, 2, 7
work page 2018
-
[3]
Real-time edge-aware image processing with the bilateral grid
Jiawen Chen, Sylvain Paris, and Fr ´edo Durand. Real-time edge-aware image processing with the bilateral grid. ACM Transactions on Graphics (TOG), 26(3):103–es, 2007. 2, 3
work page 2007
-
[4]
Jiawen Chen, Andrew Adams, Neal Wadhwa, and Samuel W Hasinoff. Bilateral guided upsampling. ACM Transactions on Graphics (TOG), 35(6):1–8, 2016. 2, 3, 5
work page 2016
-
[5]
Simple baselines for image restoration
Liangyu Chen, Xiaojie Chu, Xiangyu Zhang, and Jian Sun. Simple baselines for image restoration. In European confer- ence on computer vision , pages 17–33. Springer, 2022. 6, 1
work page 2022
-
[6]
Cyclemlp: A mlp-like architecture for dense visual predictions
Shoufa Chen, Enze Xie, Chongjian Ge, Runjian Chen, Ding Liang, and Ping Luo. Cyclemlp: A mlp-like architecture for dense visual predictions. IEEE Transactions on Pattern Analysis and Machine Intelligence , 45(12):14284–14300,
-
[7]
Deep photo enhancer: Unpaired learning for im- age enhancement from photographs with gans
Yu-Sheng Chen, Yu-Ching Wang, Man-Hsin Kao, and Yung- Yu Chuang. Deep photo enhancer: Unpaired learning for im- age enhancement from photographs with gans. In Proceed- ings of the IEEE conference on computer vision and pattern recognition, pages 6306–6314, 2018. 1, 2
work page 2018
-
[8]
Repmlp: Re- parameterizing convolutions into fully-connected layers for image recognition
Xiaohan Ding, Chunlong Xia, Xiangyu Zhang, Xiaojie Chu, Jungong Han, and Guiguang Ding. Repmlp: Re- parameterizing convolutions into fully-connected layers for image recognition. arXiv preprint arXiv:2105.01883, 2021. 3
arXiv 2021
Show all 66 references
-
[9]
Deep bilateral learning for real- time image enhancement
Micha ¨el Gharbi, Jiawen Chen, Jonathan T Barron, Samuel W Hasinoff, and Fr´edo Durand. Deep bilateral learning for real- time image enhancement. ACM Transactions on Graphics (TOG), 36(4):1–12, 2017. 2, 3, 4, 5, 6, 8, 1
2017
-
[10]
Zero-reference deep curve estimation for low-light image enhancement
Chunle Guo, Chongyi Li, Jichang Guo, Chen Change Loy, Junhui Hou, Sam Kwong, and Runmin Cong. Zero-reference deep curve estimation for low-light image enhancement. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 1780–1789, 2020. 3, 7
2020
-
[11]
Hire-mlp: Vi- sion mlp via hierarchical rearrangement
Jianyuan Guo, Yehui Tang, Kai Han, Xinghao Chen, Han Wu, Chao Xu, Chang Xu, and Yunhe Wang. Hire-mlp: Vi- sion mlp via hierarchical rearrangement. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 826–836, 2022. 3
2022
-
[12]
An fpga-based fully pipelined bilateral grid for real-time image denoising
Nobuho Hashimoto and Shinya Takamaeda-Yamazaki. An fpga-based fully pipelined bilateral grid for real-time image denoising. In 2021 31st International Conference on Field- Programmable Logic and Applications (FPL) , pages 167–
2021
-
[13]
Con- ditional sequential modulation for efficient global image re- touching
Jingwen He, Yihao Liu, Yu Qiao, and Chao Dong. Con- ditional sequential modulation for efficient global image re- touching. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceed- ings, Part XIII 16 , pages 679–695. Springer, 2020. 2, 3, 6, 8
2020
-
[14]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 6, 1
2016
-
[15]
Vision permutator: A per- mutable mlp-like architecture for visual recognition
Qibin Hou, Zihang Jiang, Li Yuan, Ming-Ming Cheng, Shuicheng Yan, and Jiashi Feng. Vision permutator: A per- mutable mlp-like architecture for visual recognition. IEEE transactions on pattern analysis and machine intelligence , 45(1):1328–1334, 2022. 3
2022
-
[16]
Exposure normalization and compensation for multiple-exposure correction
Jie Huang, Yajing Liu, Xueyang Fu, Man Zhou, Yang Wang, Feng Zhao, and Zhiwei Xiong. Exposure normalization and compensation for multiple-exposure correction. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6043–6052, 2022. 7
2022
-
[17]
Deep fourier-based exposure correction network with spatial- frequency interaction
Jie Huang, Yajing Liu, Feng Zhao, Keyu Yan, Jinghao Zhang, Yukun Huang, Man Zhou, and Zhiwei Xiong. Deep fourier-based exposure correction network with spatial- frequency interaction. In European Conference on Computer Vision, pages 163–180. Springer, 2022. 7
2022
-
[18]
Context-based automatic local image enhancement
Sung Ju Hwang, Ashish Kapoor, and Sing Bing Kang. Context-based automatic local image enhancement. In Com- puter Vision–ECCV 2012: 12th European Conference on Computer Vision, Florence, Italy, October 7-13, 2012, Pro- ceedings, Part I 12, pages 569–582. Springer, 2012. 1
2012
-
[19]
Dslr-quality photos on mobile devices with deep convolutional networks
Andrey Ignatov, Nikolay Kobyshev, Radu Timofte, Kenneth Vanhoey, and Luc Van Gool. Dslr-quality photos on mobile devices with deep convolutional networks. InProceedings of the IEEE international conference on computer vision, pages 3277–3285, 2017. 1, 2
2017
-
[20]
Enlightengan: Deep light enhancement without paired supervision
Yifan Jiang, Xinyu Gong, Ding Liu, Yu Cheng, Chen Fang, Xiaohui Shen, Jianchao Yang, Pan Zhou, and Zhangyang Wang. Enlightengan: Deep light enhancement without paired supervision. IEEE transactions on image processing, 30:2340–2349, 2021. 1, 2
2021
-
[21]
Per- sonalization of image enhancement
Sing Bing Kang, Ashish Kapoor, and Dani Lischinski. Per- sonalization of image enhancement. In2010 IEEE Computer Society Conference on Computer Vision and Pattern Recog- nition, pages 1799–1806. IEEE, 2010. 1
2010
-
[22]
Global and local enhancement networks for paired and unpaired im- age enhancement
Han-Ul Kim, Young Jun Koh, and Chang-Su Kim. Global and local enhancement networks for paired and unpaired im- age enhancement. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part XXV 16, pages 339–354. Springer, 2020. 3
2020
-
[23]
Jsi-gan: Gan- based joint super-resolution and inverse tone-mapping with pixel-wise task-specific filters for uhd hdr video
Soo Ye Kim, Jihyong Oh, and Munchurl Kim. Jsi-gan: Gan- based joint super-resolution and inverse tone-mapping with pixel-wise task-specific filters for uhd hdr video. InProceed- ings of the AAAI Conference on Artificial Intelligence, pages 11287–11295, 2020. 1, 2
2020
-
[24]
Image-adaptive 3d lookup tables for real-time image enhancement with bilateral grids
Wontae Kim and Nam Ik Cho. Image-adaptive 3d lookup tables for real-time image enhancement with bilateral grids. In European Conference on Computer Vision, pages 91–108. Springer, 2024. 2, 3, 6, 7, 8, 1
2024
-
[25]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980 ,
-
[26]
Automatic content-aware color and tone stylization
Joon-Young Lee, Kalyan Sunkavalli, Zhe Lin, Xiaohui Shen, and In So Kweon. Automatic content-aware color and tone stylization. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2470–2478,
-
[27]
Flexible piecewise curves estimation for photo enhancement
Chongyi Li, Chunle Guo, Qiming Ai, Shangchen Zhou, and Chen Change Loy. Flexible piecewise curves estimation for photo enhancement. arXiv preprint arXiv:2010.13412, 2020. 3
2010 arXiv
-
[28]
Real-time expo- sure correction via collaborative transformations and adap- tive sampling
Ziwen Li, Feng Zhang, Meng Cao, Jinpu Zhang, Yuanjie Shao, Yuehuan Wang, and Nong Sang. Real-time expo- sure correction via collaborative transformations and adap- tive sampling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 2984–...
2024
-
[29]
Ppr10k: A large-scale portrait photo retouch- ing dataset with human-region mask and group-level consis- tency
Jie Liang, Hui Zeng, Miaomiao Cui, Xuansong Xie, and Lei Zhang. Ppr10k: A large-scale portrait photo retouch- ing dataset with human-region mask and group-level consis- tency. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 653–661...
2021
-
[30]
Iterative prompt learning for unsupervised backlit image enhancement
Zhexin Liang, Chongyi Li, Shangchen Zhou, Ruicheng Feng, and Chen Change Loy. Iterative prompt learning for unsupervised backlit image enhancement. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 8094–8103, 2023. 7
2023
-
[31]
4d lut: learnable context-aware 4d lookup table for image enhancement
Chengxu Liu, Huan Yang, Jianlong Fu, and Xueming Qian. 4d lut: learnable context-aware 4d lookup table for image enhancement. IEEE Transactions on Image Processing, 32: 4742–4756, 2023. 2, 3
2023
-
[32]
Pay attention to mlps
Hanxiao Liu, Zihang Dai, David So, and Quoc V Le. Pay attention to mlps. Advances in neural information processing systems, 34:9204–9215, 2021. 3
2021
-
[33]
Pixel-learnable 3dlut with saturation-aware compensation for image enhancement
Jing Liu, Qingying Li, Xiongkuo Min, Yuting Su, Guang- tao Zhai, and Xiaokang Yang. Pixel-learnable 3dlut with saturation-aware compensation for image enhancement. IEEE Transactions on Multimedia, 2024. 2, 3, 6
2024
-
[34]
Autostyle: Automatic style transfer from im- age collections to users’ images
Yiming Liu, Michael Cohen, Matt Uyttendaele, and Szymon Rusinkiewicz. Autostyle: Automatic style transfer from im- age collections to users’ images. In Computer Graphics Fo- rum, pages 21–31. Wiley Online Library, 2014. 1
2014
-
[35]
Deeplpf: Deep local para- metric filters for image enhancement
Sean Moran, Pierre Marza, Steven McDonagh, Sarah Parisot, and Gregory Slabaugh. Deeplpf: Deep local para- metric filters for image enhancement. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 12826–12835, 2020. 1, 2, 6
2020
-
[36]
Curl: Neural curve layers for global image enhancement
Sean Moran, Steven McDonagh, and Gregory Slabaugh. Curl: Neural curve layers for global image enhancement. In 2020 25th International Conference on Pattern Recognition (ICPR), pages 9796–9803. IEEE, 2021. 3
2020
-
[37]
Distort-and-recover: Color enhancement using deep reinforcement learning
Jongchan Park, Joon-Young Lee, Donggeun Yoo, and In So Kweon. Distort-and-recover: Color enhancement using deep reinforcement learning. In Proceedings of the IEEE con- ference on computer vision and pattern recognition , pages 5928–5936, 2018. 3
2018
-
[38]
Color transfer between images
Erik Reinhard, Michael Adhikhmin, Bruce Gooch, and Peter Shirley. Color transfer between images. IEEE Computer graphics and applications, 21(5):34–41, 2001. 1
2001
-
[39]
Improved implicit neural representation with fourier reparameterized training
Kexuan Shi, Xingyu Zhou, and Shuhang Gu. Improved implicit neural representation with fourier reparameterized training. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 25985– 25994, 2024. 3
2024
-
[40]
Very deep convo- lutional networks for large-scale image recognition
Karen Simonyan and Andrew Zisserman. Very deep convo- lutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. 5
2014 arXiv
-
[41]
Starenhancer: Learning real-time and style-aware image enhancement
Yuda Song, Hui Qian, and Xin Du. Starenhancer: Learning real-time and style-aware image enhancement. In Proceed- ings of the IEEE/CVF International Conference on Com- puter Vision, pages 4126–4135, 2021. 3
2021
-
[42]
Mlp-mixer: An all-mlp architecture for vision
Ilya O Tolstikhin, Neil Houlsby, Alexander Kolesnikov, Lu- cas Beyer, Xiaohua Zhai, Thomas Unterthiner, Jessica Yung, Andreas Steiner, Daniel Keysers, Jakob Uszkoreit, et al. Mlp-mixer: An all-mlp architecture for vision. Advances in neural information processing systems, 34:2...
-
[43]
Resmlp: Feedforward networks for image classification with data-efficient training
Hugo Touvron, Piotr Bojanowski, Mathilde Caron, Matthieu Cord, Alaaeldin El-Nouby, Edouard Grave, Gautier Izac- ard, Armand Joulin, Gabriel Synnaeve, Jakob Verbeek, et al. Resmlp: Feedforward networks for image classification with data-efficient training. IEEE transactions on ...
2022
-
[44]
Maxim: Multi-axis mlp for image processing
Zhengzhong Tu, Hossein Talebi, Han Zhang, Feng Yang, Peyman Milanfar, Alan Bovik, and Yinxiao Li. Maxim: Multi-axis mlp for image processing. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5769–5780, 2022. 3
2022
-
[45]
Lgabl: Uhd multi-exposure image fusion via local and global aware bilateral learning
Di Wang, Zhuoran Zheng, Weiping Ding, and Xiuyi Jia. Lgabl: Uhd multi-exposure image fusion via local and global aware bilateral learning. IEEE Transactions on Emerg- ing Topics in Computational Intelligence , 8(2):1362–1375,
-
[46]
Local color distributions prior for image enhancement
Haoyuan Wang, Ke Xu, and Rynson WH Lau. Local color distributions prior for image enhancement. InEuropean con- ference on computer vision, pages 343–359. Springer, 2022. 5, 7, 8, 1
2022
-
[47]
Underexposed photo enhance- ment using deep illumination estimation
Ruixing Wang, Qing Zhang, Chi-Wing Fu, Xiaoyong Shen, Wei-Shi Zheng, and Jiaya Jia. Underexposed photo enhance- ment using deep illumination estimation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6849–6857, 2019. 2, 3, 6
2019
-
[48]
Real-time image en- hancer via learnable spatial-aware 3d lookup tables
Tao Wang, Yong Li, Jingyang Peng, Yipeng Ma, Xian Wang, Fenglong Song, and Youliang Yan. Real-time image en- hancer via learnable spatial-aware 3d lookup tables. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 2471–2480, 2021. 2, 3, 6
2021
-
[49]
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 processing, 13(4):600–612, 2004. 7
2004
-
[50]
Deep retinex decomposition for low-light enhancement
Chen Wei, Wenjing Wang, Wenhan Yang, and Jiaying Liu. Deep retinex decomposition for low-light enhancement. arXiv preprint arXiv:1808.04560, 2018. 1, 2, 7
2018 arXiv
-
[51]
Uretinex-net: Retinex-based deep unfolding network for low-light image enhancement
Wenhui Wu, Jian Weng, Pingping Zhang, Xu Wang, Wen- han Yang, and Jianmin Jiang. Uretinex-net: Retinex-based deep unfolding network for low-light image enhancement. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 5901–5910, 2022. 1, 2, 7
2022
-
[52]
Semi-supervised learning for low-light image enhancement by pseudo low-light image
Shuo Xie, Yingjie Ma, Wei Xu, Song Qiu, and Yifei Sun. Semi-supervised learning for low-light image enhancement by pseudo low-light image. In 2023 16th International Congress on Image and Signal Processing, BioMedical En- gineering and Informatics (CISP-BMEI) , pages 1–6. IEEE,
2023
-
[53]
Bilateral grid learning for stereo matching networks
Bin Xu, Yuhua Xu, Xiaoli Yang, Wei Jia, and Yulan Guo. Bilateral grid learning for stereo matching networks. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 12497–12506, 2021. 2, 3
2021
-
[54]
Deep bilateral learning for stereo image super-resolution
Qingyu Xu, Longguang Wang, Yingqian Wang, Weidong Sheng, and Xinpu Deng. Deep bilateral learning for stereo image super-resolution. IEEE Signal Processing Letters, 28: 613–617, 2021. 2, 3
2021
-
[55]
Automatic photo adjustment using deep neu- ral networks
Zhicheng Yan, Hao Zhang, Baoyuan Wang, Sylvain Paris, and Yizhou Yu. Automatic photo adjustment using deep neu- ral networks. ACM Transactions on Graphics (TOG), 35(2): 1–15, 2016. 1, 2
2016
-
[56]
Adaint: Learning adaptive intervals for 3d lookup tables on real-time image enhancement
Canqian Yang, Meiguang Jin, Xu Jia, Yi Xu, and Ying Chen. Adaint: Learning adaptive intervals for 3d lookup tables on real-time image enhancement. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 17522–17531, 2022. 2, 3, 6
2022
-
[57]
Seplut: Separable image-adaptive lookup tables for real-time image enhancement
Canqian Yang, Meiguang Jin, Yi Xu, Rui Zhang, Ying Chen, and Huaida Liu. Seplut: Separable image-adaptive lookup tables for real-time image enhancement. In European Con- ference on Computer Vision, pages 201–217. Springer, 2022. 3, 6
2022
-
[58]
Learning image-adaptive 3d lookup tables for high perfor- mance photo enhancement in real-time
Hui Zeng, Jianrui Cai, Lida Li, Zisheng Cao, and Lei Zhang. Learning image-adaptive 3d lookup tables for high perfor- mance photo enhancement in real-time. IEEE Transactions on Pattern Analysis and Machine Intelligence , 44(4):2058– 2073, 2020. 3, 6, 8, 1
2020
-
[59]
Clut-net: Learning adaptively compressed representations of 3dluts for lightweight image enhancement
Fengyi Zhang, Hui Zeng, Tianjun Zhang, and Lin Zhang. Clut-net: Learning adaptively compressed representations of 3dluts for lightweight image enhancement. In Proceedings of the 30th ACM International Conference on Multimedia , pages 6493–6501, 2022. 3
2022
-
[60]
Lookup table meets lo- cal laplacian filter: pyramid reconstruction network for tone mapping
Feng Zhang, Ming Tian, Zhiqiang Li, Bin Xu, Qingbo Lu, Changxin Gao, and Nong Sang. Lookup table meets lo- cal laplacian filter: pyramid reconstruction network for tone mapping. Advances in Neural Information Processing Sys- tems, 36:57558–57569, 2023. 2, 3, 6, 8, 1
2023
-
[61]
The unreasonable effectiveness of deep features as a perceptual metric
Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shecht- man, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric. In Proceedings of the IEEE conference on computer vision and pattern recogni- tion, pages 586–595, 2018. 7
2018
-
[62]
Kindling the darkness: A practical low-light image enhancer
Yonghua Zhang, Jiawan Zhang, and Xiaojie Guo. Kindling the darkness: A practical low-light image enhancer. In Pro- ceedings of the 27th ACM international conference on mul- timedia, pages 1632–1640, 2019. 1, 2
2019
-
[63]
Ultra-high-definition image hdr reconstruc- tion via collaborative bilateral learning
Zhuoran Zheng, Wenqi Ren, Xiaochun Cao, Tao Wang, and Xiuyi Jia. Ultra-high-definition image hdr reconstruc- tion via collaborative bilateral learning. In Proceedings of the IEEE/CVF international conference on computer vision, pages 4449–4458, 2021. 2, 3
2021
-
[64]
4k-resolution photo exposure correction at 125 fps with˜ 8k parameters
Yijie Zhou, Chao Li, Jin Liang, Tianyi Xu, Xin Liu, and Jun Xu. 4k-resolution photo exposure correction at 125 fps with˜ 8k parameters. In Proceedings of the IEEE/CVF Win- ter Conference on Applications of Computer Vision , pages 1587–1597, 2024. 2, 3 Learning Pixel-adaptive M...
2024
-
[65]
The width in NAF-block is set as
as our backbone to gener- ate the bilateral grids, with each layer in both the encoder and decoder comprising two NAF- blocks (see Figure 7), and the number of blocks at the bot- tom level is the same. The width in NAF-block is set as
-
[66]
We then apply the pixel unshuffle operation to reduce its resolution by a factor of 4 while expanding the channel count by 16 times
The feature map output from NAFNet maintains a chan- nel numble equal to the model’s width. We then apply the pixel unshuffle operation to reduce its resolution by a factor of 4 while expanding the channel count by 16 times. Next, two 1×1 convo- lutions are used to further adj...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.