REVIEW 4 major objections 4 minor 25 references
Point Cloud-Assisted Neural Image Compression
T0 review · 4 major / 4 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read A neural codec that fuses lidar point clouds as auxiliary input cuts image bitrate by 54.518% on the KITTI dataset.
desk verdict Genuinely new application of point-cloud side information to learned image compression, but the headline bitrate gain is not yet causally attributed to the point cloud without a same-architecture control. 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
Two mechanisms carry the argument. The first is the unified representation: a point cloud is projected into the pixel coordinate system by $X_{2D}=P^{(2)}_{rect}R^{(0)}_{rect}T^{cam}_{velo}X_{3D}$, with depth retained as the pixel value, producing a $1 \times H \times W$ depth map that is concatenated with the $3 \times H \times W$ image into a $4 \times H \times W$ array. This turns unordered 3D points into an ordered 2D grid so existing CNN image transforms can process the point cloud without specialized operators. The second is MMFFT, the multi-modal feature fusion transform module: the image latent $y_{img}$ and the point-cloud latent $y_{pc}$ are concatenated along the channel dimension, projected to $M$ channels, and split into a residual path and a channel-attention path; adding the two paths produces the fused latent $y$ that is quantized and entropy-coded with a Gaussian mean-scale model. The attention path is what up-weights common image-point-cloud features and suppresses modality-specific noise.
What would settle it
Compress the point cloud and transmit it alongside the image, then compute the end-to-end BD-rate of PCA-NIC against the same image-only baseline; if including the point-cloud bits makes the 54.518% saving shrink to zero or reverse, the paper's central claim is falsified.
Extended reading notes
Core claim
The central discovery is that the 3D structure encoded in a point cloud is complementary to image texture and can be exploited before entropy coding rather than treated as a separate modality to be compressed. Projecting the point cloud onto the image with the KITTI calibration matrices yields a pixel-aligned depth map; concatenating it with the RGB image gives a $4 \times H \times W$ tensor that a conventional 2D neural codec can ingest. PCA-NIC runs separate analysis transforms for image and point cloud, then MMFFT concatenates the latents along the channel dimension and applies a channel-attention mechanism built from average and max pooling so that features shared by both modalities are up-weighted and redundant cross-modal information is pruned. The fused latent is quantized and entropy-coded, so the bitstream contains only image-side bits. Relative to the image-only baseline, the paper reports a 54.518% BD-rate reduction and 2.101 dB BD-PSNR improvement on KITTI.
Load-bearing premise
The point cloud is available to the codec without consuming any bitrate or latency budget, so all reported BD-rate and BD-PSNR gains count only image bits and never the cost of acquiring, encoding, or transmitting the lidar data.
Editorial extensions
If this is right
- In systems that already collect lidar for other tasks, the image bitstream can be compressed with the point cloud as side information at no extra acquisition cost.
- The unified representation lets existing 2D neural codec backbones be reused for multimodal input, avoiding the need for specialized point-based network operators.
- The reported BD-rate and BD-PSNR gains count only image bits, so the method's real-world advantage depends on whether the point cloud is already available or must be transmitted as part of the total data budget.
- The attention-based fusion between image and depth latents suggests that other pixel-aligned auxiliary modalities, such as stereo depth or radar maps, could yield similar compression gains.
- The codec improves both PSNR and MS-SSIM, indicating that point-cloud assistance helps preserve texture and structural detail, not just low-frequency content.
Reading between the lines
- Inference: the 54.518% saving is best read as an upper bound for deployments that pay for the point cloud; a joint rate-distortion comparison that includes compressed lidar bits could shrink or erase the gap.
- Inference: a direct test is to replace the lidar depth map with a monocular depth estimate at the encoder; preserving most of the BD-rate gain would show the method generalizes beyond lidar-equipped platforms.
- Inference: the same fusion recipe could be applied to video compression, where temporally consistent depth from lidar or stereo may remove inter-frame redundancy more effectively than motion estimation alone.
- Inference: the shared-feature up-weighting implies the method is really about suppressing cross-modal redundancy, so it may transfer to joint image-depth coding with a single bitstream serving both reconstruction and geometry estimation.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes PCA-NIC, a learned image codec that uses a co-captured LiDAR point cloud as auxiliary information to improve image compression on the KITTI dataset. The authors unify image and point cloud into a 4×H×W representation by projecting 3D points onto the image plane and using depth as an extra channel, then feed image and point cloud through separate analysis transforms, fuse the latents with a proposed MMFFT module, and encode the fused representation with an entropy model based on Cheng2020. They report BD-rate reductions of 54.518% in PSNR and 29.315% in MS-SSIM over Cheng2020, together with ablations of the attention mechanism in MMFFT and of replacing their entropy model with that of MLIC++. The paper claims to be the first to improve image compression using point cloud data.
Significance. If the reported gains are causally attributable to point cloud assistance, the result is significant for multimodal driving compression: it would show that an already-available depth stream can substantially reduce image bitrate. The paper has real strengths: it reports detailed training settings, multiple rate-distortion operating points, and comparisons against strong learned codecs, and the ablation results are directionally consistent with the main curves. However, the central attribution is not yet established, because no same-architecture control without the point cloud branch is provided, the information-theoretic motivation in Eq. (1) is formally incorrect, and the evaluation protocol for the auxiliary point cloud bits is not stated. These issues are fixable within the scope of the manuscript, so the appropriate decision is major revision rather than rejection.
major comments (4)
- [Experiments/Table 1] The central claim that point cloud assistance causes the large BD-rate reduction is not supported by the currently reported experiments. Table 1 compares PCA-NIC with Cheng2020, LIC TCM, and MLIC++, which differ in architecture, channel counts, attention mechanisms, and entropy model; the ablations PCA-NIC no attn and PCA-NIC MLIC++ still include the point cloud branch in every configuration. A same-architecture control 'PCA-NIC without point cloud' (same image analysis transform, synthesis transform, entropy model, and capacity, but no g_pc^a or MMFFT point-cloud input) is needed to isolate the contribution of the point cloud. Without it, the 54.518% BD-rate improvement over Cheng2020 cannot be causally attributed to point cloud assistance.
- [Proposed Method / Analysis, Eq. (1)] The information-theoretic motivation is formally incorrect. Eq. (1) writes H(I) = H(Iy) + H(In), which assumes that Iy and In are independent; in general H(I) = H(Iy) + H(In | Iy). Moreover, H(My) > H(Iy) does not imply lower coding cost, because the rate depends on the entropy of the quantized latent representation and on the resulting distortion; a larger or richer feature set may increase the coding cost. The theoretical argument should be corrected or removed, and the empirical comparison should be the basis for the claim.
- [Experiments / Rate-distortion evaluation] The reported BD-rate and BD-PSNR numbers count only image bits; the paper never states whether the point cloud is assumed to be free side information available at the encoder or must be transmitted or stored together with the image. If the lidar stream is part of the total compressed representation, the reported savings may shrink or disappear. The authors should state the assumption explicitly, and if joint transmission is intended, they should report rate-distortion results that include the point cloud bitrate.
- [Ablation Studies] The ablation naming and the description of the entropy model are ambiguous. The name 'PCA-NIC no attn' is used twice: once for MMFFT without attention and once for PCA-NIC with the MLIC++ entropy model. In addition, 'our entropy model' is never specified beyond saying it follows the context coding of [9] with a Gaussian mean-scale likelihood; given that the entropy model replacement is used as an ablation, its exact architecture and design choices must be described.
minor comments (4)
- [Introduction and Abstract] The text repeatedly cites 'cheng2020 [5]', but reference [5] is Ballé et al.'s end-to-end codec, while Cheng2020 is reference [9]. The citation markers should be corrected throughout.
- [Figure 1 caption] The caption defines Mimg twice in contradictory ways: it first says Mimg denotes the features belonging to the image in the mixed feature, then says features not belonging to the image are denoted as Mimg. This needs a clear notation, e.g., Mimg and Mnot-img.
- [Training Settings / Results] The paper gives inconsistent descriptions of the evaluation data: Training Settings says the testing dataset comprises randomly cropped 256×256 samples from the first 5000 KITTI test examples, while Results says the validation set comprises 256×1024-sized crops from regions with height 110 or above in the last 2518 test samples. The authors should clarify which set produced Table 1 and Fig. 5.
- [Throughout] There are several typos and awkward phrasings, including 'frature fusion transform' in the Fig. 4 caption, 'entopy model' in Ablation Studies, and 'increasement' in the analysis section. A careful proofread is needed.
Circularity Check
No significant circularity: the compression gains are measured against external codecs and no result reduces by construction to the point-cloud input or to a fitted parameter.
full rationale
The derivation chain in PCA-NIC is not circular. The central performance claims (BD-rate -54.518%, BD-PSNR +2.101 dB on KITTI) are benchmarked against Cheng2020, MLIC++, and LIC TCM, and these baselines are external codecs, not outputs of the paper's own fitting procedure. The point-cloud branch is encoder-side auxiliary input and is not defined in terms of the image bitrate it claims to improve; no parameter is fitted to the reported BD-rate and then renamed a prediction. The informal entropy analysis in Eq. (1) is mathematically flawed (it treats H(I) as H(Iy)+H(In) and H(My) as additive without conditioning), but that is an unsupported derivation rather than a circular one, and the experimental numbers do not depend on it. The absence of a same-architecture 'PCA-NIC without point cloud' ablation weakens causal attribution of the gain to point-cloud assistance, but this is a missing control, not a definitional equivalence or a self-citation substitution. There are no load-bearing self-citations or uniqueness claims imported from the authors' prior work. Accordingly, no circular step can be exhibited with the required quote-to-reduction standard.
Assumptions & free parameters
free parameters (2)
- Rate-distortion Lagrange multipliers lambda =
0.0016, 0.0032, 0.0075, 0.015, 0.03, 0.045
- Latent channel counts N and M =
N=192, M=288
assumptions (4)
- domain assumption KITTI calibration matrices in Eq. (3) correctly project each 3D point onto the image pixel grid, and depth can serve as a valid extra image channel.
- domain assumption Point cloud data is available to the codec without additional bitrate or latency cost.
- domain assumption The entropy relationships in the analysis section imply that a neural network can extract more useful image features from mixed data.
- domain assumption The entropy model and context coding of Cheng2020 [9] can be adapted by changing channel counts without loss of correctness.
invented entities (1)
-
MMFFT module
Cite this review
Pith. "Pith review of Point Cloud-Assisted Neural Image Compression." pith.science (2026). https://pith.science/paper/AMVNZY36
@misc{pith2026241211771,
author = {Pith},
title = {Pith review of: Point Cloud-Assisted Neural Image Compression},
year = {2026},
howpublished = {\url{https://pith.science/paper/AMVNZY36}},
note = {Machine review of arXiv:2412.11771}
}
read the original abstract
High-efficient image compression is a critical requirement. In several scenarios where multiple modalities of data are captured by different sensors, the auxiliary information from other modalities are not fully leveraged by existing image-only codecs, leading to suboptimal compression efficiency. In this paper, we increase image compression performance with the assistance of point cloud, which is widely adopted in the area of autonomous driving. We first unify the data representation for both modalities to facilitate data processing. Then, we propose the point cloud-assisted neural image codec (PCA-NIC) to enhance the preservation of image texture and structure by utilizing the high-dimensional point cloud information. We further introduce a multi-modal feature fusion transform module (MMFFT) to capture more representative image features, remove redundant information between channels and modalities that are not relevant to the image content. Our work is the first to improve image compression performance using point cloud and achieves state-of-the-art performance.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[9]
Learned image compression with discretized gaussian mixture likelihoods and attention modules,
Zhengxue Cheng, Heming Sun, Masaru Takeuchi, and Jiro Katto, “Learned image compression with discretized gaussian mixture likelihoods and attention modules,” In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR) , 2020
work page 2020
-
[1]
Jpeg: Still image data compression standard[m],
WB Pennebaker and JL Mitchell, “Jpeg: Still image data compression standard[m],” Springer Science & Business Media , 1992
work page 1992
- [2]
- [3]
-
[4]
Overview of the versatile video coding (vvc) standard and its applications,
Benjamin Bross, Ye-Kui Wang, Yan Ye, Shan Liu, Jianle Chen, Gary J. Sullivan, and Jens-Rainer Ohm, “Overview of the versatile video coding (vvc) standard and its applications,” IEEE Transactions on Circuits and Systems for Video Technology, 31(10), 3736-3764. , 2021
work page 2021
-
[5]
End-to-end optimized image compression,
Johannes Ball´ e, Valero Laparra, and Eero P. Simoncelli, “End-to-end optimized image compression,” arxiv preprint arxiv:1611.01704 , 2016
arXiv 2016
-
[6]
Variational image compression with a scale hyperprior,
Johannes Ball´ e, David Minnen, Saurabh Singh, Sung Jin Hwang, Nick Johnston, and Google, “Variational image compression with a scale hyperprior,” arxiv preprint arxiv:1802.01436, 2018
arXiv 2018
-
[7]
Joint autoregressive and hierarchical priors for learned image compression,
David Minnen, Johannes Ball´ e, and George D Toderici, “Joint autoregressive and hierarchical priors for learned image compression,” Advances in neural information processing systems 31, 2018
work page 2018
Show all 25 references
-
[8]
Asym- metric gained deep image compression with continuous rate adaptation,
Ze Cui, Jing Wang, Shangyin Gao, Tiansheng Guo, Yihui Feng, and Bo Bai, “Asym- metric gained deep image compression with continuous rate adaptation,” In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2021
2021
-
[10]
A unified end-to-end framework for efficient deep image compression,
Jiaheng Liu, Guo Lu, Zhihao Hu, and Dong Xu, “A unified end-to-end framework for efficient deep image compression,” arXiv preprint arXiv:2002.03370 , 2020
2002 arXiv
-
[11]
Causal contextual prediction for learned image compression,
Z Guo, Z Zhang, R Feng, and Z Chen, “Causal contextual prediction for learned image compression,” IEEE Transactions on Circuits and Systems for Video Technology 32.4 , pp. 2329–2341, 2021
2021
-
[12]
Checker- board context model for efficient learned image compression,
Dailan He, Yaoyan Zheng, Baocheng Sun, Yan Wang, and Hongwei Qin, “Checker- board context model for efficient learned image compression,” In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, p. 14771–14780, 2021
2021
-
[13]
Channel-wise autoregressive entropy models for learned image compression,
David Minnen and Saurabh Singh, “Channel-wise autoregressive entropy models for learned image compression,” In IEEE International Conference on Image Processing (ICIP), p. 3339–3343, 2020
2020
-
[14]
Elic: Efficient learned image compression with unevenly grouped spacechannel contextual adaptive coding,
Dailan He, Ziming Yang, Weikun Peng, Rui Ma, Hongwei Qin, and Yan Wang, “Elic: Efficient learned image compression with unevenly grouped spacechannel contextual adaptive coding,” In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , p. 5...
2022
-
[15]
Mlic: Multi-reference entropy model for learned image compression,
Wei Jiang, Jiayu Yang, Yongqi Zhai, Peirong Ning, Feng Gao, and Ronggang Wang, “Mlic: Multi-reference entropy model for learned image compression,” In Proceedings of the 31st ACM International Conference on Multimedia , 2023
2023
-
[16]
Learned image compression via neighborhood-based attention optimization and context modeling with multi-scale guiding,
Bo Li, Yongjun Li, Jincheng Luo, Xinru Zhang, Chaoyue Li, Zhimin Chenjin, and Yong Liang, “Learned image compression via neighborhood-based attention optimization and context modeling with multi-scale guiding,” Engineering Applications of Artificial Intelligence. 129: 107596 , 2024
2024
-
[17]
Corner-to-center long-range context model for efficient learned image compres- sion[j],
Yang Sui, Ding Ding, Xiang Pan, Xiaozhong Xu, Shan Liu, Bo Yuan, and Zhenzhong Chen, “Corner-to-center long-range context model for efficient learned image compres- sion[j],” Journal of Visual Communication and Image Representation. 98: 103990 , 2024
2024
-
[18]
Deep residual learning for image recognition.,
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun, “Deep residual learning for image recognition.,” Proceedings of the IEEE conference on computer vision and pattern recognition, 2016
2016
-
[19]
Transformerbased transform coding,
Yinhao Zhu, Yang Yang, and Taco Cohen, “Transformerbased transform coding,” In International Conference on Learning Representations , 2022
2022
-
[20]
The devil is in the details: Window-based attention for image compression,
Renjie Zou, Chunfeng Song, and Zhaoxiang Zhang, “The devil is in the details: Window-based attention for image compression,” In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2022
2022
-
[21]
Entroformer: A transformer-based entropy model for learned image compression,
Yichen Qian, Xiuyu Sun, Zhiyu Tan Ming Lin, and Rong Jin, “Entroformer: A transformer-based entropy model for learned image compression,” In International Conference on Learning Representations, 2021
2021
-
[22]
Contextformer: A trans- former with spatio-channel attention for context modeling in learned image compres- sion,
A Burakhan Koyuncu, Han Gao, and Eckehard Steinbach, “Contextformer: A trans- former with spatio-channel attention for context modeling in learned image compres- sion,” In European Conference on Computer Vision , 2022
2022
-
[23]
Learned image compression with mixed transformer-cnn architectures,
Jinming Liu, Heming Sun, and Jiro Katto, “Learned image compression with mixed transformer-cnn architectures,” In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , 2023
2023
-
[24]
Non-local attention optimized deep image compression,
Haojie Liu, Tong Chen, Peiyao Guo, Qiu Shen, Xun Cao, Yao Wang, and Zhan Ma, “Non-local attention optimized deep image compression,” arXiv preprint arXiv:1904.09757, 2019
1904 arXiv
-
[25]
Vision meets robotics: The kitti dataset[j],
A Geiger, P Lenz, C Stiller, and et al., “Vision meets robotics: The kitti dataset[j],” The International Journal of Robotics Research , 2013
2013
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.