Pith. sign in

REVIEW 4 major objections 5 minor 76 references

From Images to Point Clouds: An Efficient Solution for Cross-media Blind Quality Assessment without Annotated Training

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

Pith's one-line read A network trained only on distorted images and their quality scores can predict the perceptual quality of unlabeled point clouds from new scenes.

desk verdict Sensible extension of IT-PCQA with large reported gains, but the paper's central weighting algorithm is internally inconsistent and the ablation is confounded. read the letter →

arxiv 2501.13387 v1 pith:76FZMFBG submitted 2025-01-23 cs.CV eess.IV

classification cs.CVeess.IV
keywords cross-mediatransferblindqualityassessmentpointclouddomainadaptationdistortiondistributionweightingcontrastivelearningno-referencemetricunlabeledtraining
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that a network trained only on distorted images and their mean opinion scores can predict the perceptual quality of point clouds from unseen scenes without ever seeing point cloud quality labels. Its method, DWIT-PCQA, projects point clouds into multi-view images, aligns image and point-cloud features in a shared space, and uses estimated distortion distributions to weight the alignment toward common distortions. A quality-aware contrastive branch keeps the aligned features sensitive to quality. If this holds, point cloud quality assessment no longer needs expensive subjective labeling for every new dataset.

What carries the argument

The central object is a decomposition of the domain adaptation objective with distortion as an intermediate variable, turning direct alignment of quality-conditioned features into two subobjectives: one that aligns features conditioned on distortion type and one that maintains consistency between distortion-aware and quality-aware feature representations. The working parts are a distortion classifier that labels target projections, a distribution weight computed from estimated distortion distributions through a quadratic program, a conditional discriminator trained with a distortion-weighted cross-entropy loss, and a contrastive loss over carefully chosen positive and negative samples. Together they re-weight the source feature distribution toward distortions common to both media while preserving the features that predict perceptual quality.

What would settle it

Replace the computed distortion weights with uniform weights in the distortion-weighted cross-entropy loss on the TID2013-to-SJTU-PCQA setup; if SROCC does not drop materially, the distortion-distribution weighting is not doing the work attributed to it.

Watch

Extended reading notes

Core claim

The central claim is that cross-media blind quality assessment can be achieved by decomposing the standard domain adaptation objective into two subproblems: aligning feature distributions conditioned on distortion, and preserving the feature-to-quality mapping under biased distortion distributions. The method re-weights source features by the ratio of target to source distortion probabilities, computed from distortion pseudo-labels produced by a classifier, and feeds the re-weighted features into a conditional discriminator. Simultaneously, contrastive learning pulls together features with the same content and distortion while pushing apart features with different distortions, which keeps the aligned representation both distortion-aware and quality-aware. On image datasets as the source and point cloud datasets as the target, the paper reports SROCC gains over the prior transfer method of roughly 20 to 40 percent, landing close to fully supervised point cloud quality metrics.

Load-bearing premise

The method assumes the distortion classifier, trained only on source images, estimates the target point-cloud distortion distribution well enough that the computed importance weights improve alignment rather than adding noise.

Editorial extensions

If this is right

  • Point cloud quality assessment for new scenes no longer requires point cloud quality labels; source image quality labels and unlabeled point cloud data suffice.
  • The transfer gap to fully supervised point cloud quality metrics is small, around 7 percent SROCC on one dataset and 4.8 percent on another, so the unlabeled approach is practically usable.
  • The reported gains over the previous image-to-point-cloud transfer method, roughly 20 percent SROCC on SJTU-PCQA and 40 percent on WPC, indicate that distortion-distribution weighting addresses a real failure mode of direct feature alignment.
  • Ablation results show each component contributes: plain image-trained regression reaches 0.667 SROCC, adding distortion-weighted alignment raises it to 0.749, and the full model reaches 0.828 on the TID2013-to-SJTU-PCQA setup.

Reading between the lines

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

  • Beyond the paper: the classifier's distortion accuracy on target point-cloud projections is never reported, so a decisive check is to measure it; near-chance accuracy would mean the computed weights are pseudo-label noise.
  • Beyond the paper: the transfer assumes the source distortion taxonomy can express point-cloud distortions, and genuinely novel target distortion types would likely be under-aligned by the importance weighting.
  • Beyond the paper: the same distortion-as-transition decomposition could apply to other cross-media quality tasks, such as video-to-mesh or rendered-to-real scenes, wherever a shared feature extractor and a distortion-type predictor are available.
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 / 5 minor

Summary. The paper proposes DWIT-PCQA, a no-reference point cloud quality assessment method that transfers image quality priors to point clouds without using point cloud MOS labels. Point clouds are projected into multi-view images, a shared image encoder extracts features, and an adversarial domain adaptation framework aligns source (image) and target (point cloud) feature distributions. To handle distortion distribution mismatch, the paper introduces a distortion-weighted cross-entropy loss whose weights are estimated from a source-trained distortion classifier, together with a contrastive quality-aware feature disentanglement loss. Experiments on TID2013/KADID-10k to SJTU-PCQA/WPC report large gains over the prior IT-PCQA method and competitive performance with supervised PCQA methods.

Significance. If the claims hold, this is a practically valuable result: it would show that point cloud quality can be predicted for new scenes using only image MOS labels and unlabeled target point clouds, addressing the scarcity of PCQA annotations. The paper includes a reasonable empirical protocol with multiple source and target datasets, comparisons against FR and NR PCQA methods, and an ablation study. I credit the authors for not using target MOS labels in training and for reporting gains over the most relevant prior art. However, the central mechanism for the reported gains — the distortion-based distribution weighting — is specified inconsistently in the text, and the claimed improvement from that mechanism is not isolated in the ablation. These issues need to be resolved before the contribution can be fully assessed.

major comments (4)
  1. [Section IV-B (Algorithm 1, Eqs. (14)–(16))] The specification of the distribution-weight computation is internally inconsistent. Eq. (14) defines C as the source joint distribution D_S(ŷ_d, y_d), which requires the classifier's predictions on the source domain. Algorithm 1, however, receives only source distortion labels and target predictions, and computes C_hat = (cy_t_d')^T (ys_d') — the outer product of the normalized target-prediction histogram and the normalized source-label histogram. This matrix is rank one and is not an estimate of the joint distribution in Eq. (14). Moreover, with the constraint w_y^T D_S(y_d) = 1 and with mu_hat = cy_t_d', every feasible w_y satisfies C_hat w_y = cy_t_d' = mu_hat, so the QP objective in Eq. (16) is identically zero over the feasible set and the returned w_y is arbitrary. As a result, the +0.067 PLCC / +0.045 SROCC gain attributed to w_y in Table IV cannot be traced to the distortion-guided weighting mechanism as written. Please correct Algorithm 1, for example by passing H's source predictions as input and forming C_hat from the source joint histogram, and confirm the ablation result with the corrected weights; releasing code would also help resolve this issue.
  2. [Section III-A (Eqs. (2)–(4))] The 'decomposition' of the DA objective is not a formal derivation. Eq. (2) aligns the quality-conditioned feature distributions D_S(z|y) and D_T(z|y). The paper replaces it with Eq. (3), alignment of distortion-conditioned distributions, plus Eq. (4), which only penalizes the distance between D_S(z|y) and D_S(z|y_d) within the source domain. No inequality is provided showing that minimizing these two sub-objectives controls the target quality-conditional term D_T(z|y) in Eq. (2). In particular, Eq. (4) does not constrain the target domain conditional distribution, which is the term most relevant to target quality prediction. Please provide a bound connecting the sub-objectives to the original objective, or state explicitly that this is a heuristic surrogate.
  3. [Section V-D (Table IV)] The ablation does not isolate the effect of the distribution weight w_y. The row 'LReg + LDWCE (w/o wy)' is compared with the row 'LReg + LDWCE (w/ wy) + LCls'; the simultaneous addition of LCls is confounded with the effect of w_y. The claim that 'the distortion-based importance-weighted alignment is necessary and effective' requires an additional condition such as LReg + LDWCE (w/o wy) + LCls. Please also report this comparison on WPC, not only on SJTU-PCQA, to support the generality of the weighting mechanism.
  4. [Section IV-D (Distortion Distribution Prediction)] The entire weight estimation relies on the source-trained classifier H producing meaningful pseudo-labels on the target point-cloud projections, but the paper never reports H's accuracy, confusion matrix, or prediction entropy on the target domain. If H's target predictions are noisy, then the estimated D_T(y_d), and hence w_y, is essentially noise, and the gains in Table IV may not reflect distortion-guided alignment. Please report quantitative evidence about H on the target projections (at minimum, confidence/entropy statistics and stability of w_y across H initializations) and a sensitivity analysis of the final SROCC/PLCC to the quality of H.
minor comments (5)
  1. [Section IV-A / IV-D / IV-E] There is a dimension mismatch in the stated network architecture: G maps features to 256 dimensions, but H and R are described with first FC layers of 2048 inputs. Please clarify whether H and R operate on the 2048-d backbone features or on G's 256-d output.
  2. [Section III-C] The word 'constractive' should be 'contrastive'.
  3. [Table II caption] The table caption should explicitly state that transfer methods use unlabeled target-domain data during training, whereas the general IQA baselines do not; this is the intended unsupervised domain adaptation protocol, but the asymmetry should be flagged to keep the comparison fair.
  4. [Section V-A] All weighting factors in Eq. (22) are set to 1 with no sensitivity study; a brief robustness check for lambda_1 to lambda_4 would help establish that the reported results do not hinge on a particular tuning.
  5. [Section V-E (Fig. 7)] The t-SNE visualization in Fig. 7 is qualitative; a quantitative measure of feature-space regularity, such as a domain alignment error or a nearest-classifier accuracy, would strengthen the claim.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity: the headline transfer result is not fitted to target MOS labels; minor disclosed self-citation is not load-bearing. The Algorithm 1 / Eq. (14) mismatch is an implementation-consistency concern, not circular reasoning.

full rationale

The central claim -- predicting point cloud quality without point cloud MOS annotations -- is not circular in the sense defined here. Training uses image MOS labels and image distortion labels from TID2013/KADID-10k plus unlabeled point cloud projections; SJTU-PCQA and WPC MOS values enter only in evaluation. The importance-weighting step computes w_y from the source distortion labels and the target distortion predictions of H via the label-shift identity D_T(y_hat_d)=D_S(y_hat_d,y_d)D_T(y_d)/D_S(y_d), which is a standard consistency equation (Lipton et al.) and not a reuse of target quality labels. The decomposition of Eq. (2) into Eqs. (3)-(4) is a heuristic triangle-inequality-style decomposition rather than an equivalence by construction; it does not rename a fitted parameter as a prediction. Self-citations, notably IT-PCQA as baseline and as prior transfer work, are disclosed and are not used to prove the new method's validity. The most serious technical issue found is that Algorithm 1 constructs C_hat as an outer product of marginal histograms while Eq. (14) defines C as the joint distribution D_S(c_yd,y_d); under the stated constraint this makes the QP objective identically zero and leaves w_y unidentified. That is an internal consistency or implementation defect that should be corrected and could undermine the specific ablation attribution in Table IV, but it is not an instance of the paper's output being equivalent to its input by definition or of a fitted label being renamed a prediction. Therefore the circularity score remains low.

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

The paper introduces no new physical or conceptual entities such as particles or forces. Its load-bearing assumptions are domain-transfer premises: that human quality perception is media-invariant, that the cited DA theorems apply, that the two-part objective decomposition is a valid surrogate, and that a source-trained distortion classifier can estimate target distortion distributions. The free parameters are mostly unreported hyperparameters in the contrastive and loss-weighting modules.

free parameters (3)
  • InfoNCE temperature tau = not reported
    Controls the sharpness of the contrastive similarity in Eq. (17); no value or sensitivity analysis is provided.
  • Loss weights lambda1..lambda4 = 1, 1, 1, 1
    Set to 1 without tuning or ablation; the paper does not show sensitivity to these weights.
  • Patch count and positive/negative sample counts = 2 positives, 2 negatives, M unspecified
    The contrastive loss in Eq. (19) depends on the number of patches per image and the number of positives/negatives; implementation states positive and negative numbers are set to 2, but the patch count M is not given.
assumptions (4)
  • domain assumption HVS is a universal quality evaluator across image and point cloud domains
    The entire transfer strategy rests on the premise that perceptual quality criteria learned from 2D images generalize to 3D point cloud projections; stated in Section I.
  • standard math The error decomposition theorem and clustering structure theorem apply to this DA setting
    Cited [64], [66] and used to derive Eq. (5)-(8); assumes the source and target domains satisfy the conditions of those theorems.
  • ad hoc to paper The decomposition of Eq. (2) into Eq. (3) and Eq. (4) is a valid optimization surrogate
    The paper states this decomposition without proving equivalence or bounding the omitted third triangle-inequality term involving DT(z|yd) vs DT(z|y); this is the load-bearing modeling choice.
  • domain assumption The distortion classifier H trained on source labels generalizes well enough to estimate target distortion distribution
    The weight wy in Eq. (7) and Algorithm 1 relies on pseudo-distortion labels for target point clouds obtained from H; no accuracy or validation of H on the target domain is reported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of From Images to Point Clouds: An Efficient Solution for Cross-media Blind Quality Assessment without Annotated Training." pith.science (2026). https://pith.science/paper/76FZMFBG

@misc{pith2026250113387,
  author       = {Pith},
  title        = {Pith review of: From Images to Point Clouds: An Efficient Solution for Cross-media Blind Quality Assessment without Annotated Training},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/76FZMFBG}},
  note         = {Machine review of arXiv:2501.13387}
}
read the original abstract

We present a novel quality assessment method which can predict the perceptual quality of point clouds from new scenes without available annotations by leveraging the rich prior knowledge in images, called the Distribution-Weighted Image-Transferred Point Cloud Quality Assessment (DWIT-PCQA). Recognizing the human visual system (HVS) as the decision-maker in quality assessment regardless of media types, we can emulate the evaluation criteria for human perception via neural networks and further transfer the capability of quality prediction from images to point clouds by leveraging the prior knowledge in the images. Specifically, domain adaptation (DA) can be leveraged to bridge the images and point clouds by aligning feature distributions of the two media in the same feature space. However, the different manifestations of distortions in images and point clouds make feature alignment a difficult task. To reduce the alignment difficulty and consider the different distortion distribution during alignment, we have derived formulas to decompose the optimization objective of the conventional DA into two suboptimization functions with distortion as a transition. Specifically, through network implementation, we propose the distortion-guided biased feature alignment which integrates existing/estimated distortion distribution into the adversarial DA framework, emphasizing common distortion patterns during feature alignment. Besides, we propose the quality-aware feature disentanglement to mitigate the destruction of the mapping from features to quality during alignment with biased distortions. Experimental results demonstrate that our proposed method exhibits reliable performance compared to general blind PCQA methods without needing point cloud annotations.

Figures

Figures reproduced from arXiv: 2501.13387 by the authors.

Figure 1
Figure 1. Comparison with existing ideas. The existing IT [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Different distortion distributions of images and point [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Performance change with each removal of distortion [PITH_FULL_IMAGE:figures/full_fig_p002_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: An illustration of our proposed DWIT-PCQA. It consists of the following substeps: (a) the preprocessing module casts the [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Positive and negative sample configuration for the quality-aware feature disentanglement. Positive and negative samples [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Exemplary point clouds on the WPC dataset with the subjective MOS, the predicted quality score of the proposed [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]
Figure 7
Figure 7. Figure 7: T-SNE plot under different alignment conditions. [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

76 extracted references · 65 canonical work pages

  1. [1]

    Point cloud generation using deep local features for augmented and mixed reality contents,

    S. Lim, M. Shin, and J. Paik, “Point cloud generation using deep local features for augmented and mixed reality contents,” in IEEE International Conference on Consumer Electronics (ICCE’20) , 2020, pp. 1–3

  2. [2]

    3d point cloud processing and learning for autonomous driving: Impacting map creation, localization, and perception,

    S. Chen, B. Liu, C. Feng et al. , “3d point cloud processing and learning for autonomous driving: Impacting map creation, localization, and perception,” IEEE Signal Processing Magazine , vol. 38, no. 1, pp. 68–86, 2021

  3. [3]

    3d is here: Point cloud library (PCL),

    R. B. Rusu and S. Cousins, “3d is here: Point cloud library (PCL),” in IEEE International Conference on Robotics and Automation (ICRA’11) , 2011, pp. 1–4

  4. [4]

    Comparison of four subjective methods for image quality assessment,

    R. K. Mantiuk, A. Tomaszewska, and R. Mantiuk, “Comparison of four subjective methods for image quality assessment,” Computer Graphics Forum, vol. 31, no. 8, pp. 2478–2491, 2012

  5. [5]

    Once-training-all-fine: No-reference point cloud quality assessment via domain-relevance degradation de- scription,

    Y . Liu, Q. Yang, Y . Zhang et al., “Once-training-all-fine: No-reference point cloud quality assessment via domain-relevance degradation de- scription,” arXiv preprint arXiv:2307.01567 , 2023. 12 (a) Irregular feature space of direct feature alignment. (b) Regular feature space of proposed distortion-based conditional feature alignment. Fig. 7: T-SNE plo...

  6. [6]

    Differentiable low-computation global correlation loss for monotonicity evaluation in quality assessment,

    Y . Liu, Q. Yang, and Y . Xu, “Differentiable low-computation global correlation loss for monotonicity evaluation in quality assessment,” in IEEE International Conference on Visual Communications and Image Processing (VCIP’24), 2024, pp. 1–5

  7. [7]

    Reduced reference quality assessment for point cloud compres- sion,

    ——, “Reduced reference quality assessment for point cloud compres- sion,” in IEEE International Conference on Visual Communications and Image Processing (VCIP’22) , 2022, pp. 1–5

  8. [8]

    Reduced reference perceptual quality model with application to rate control for video-based point cloud compression,

    Q. Liu, H. Yuan, R. Hamzaoui et al. , “Reduced reference perceptual quality model with application to rate control for video-based point cloud compression,” IEEE Transactions on Image Processing , vol. 30, pp. 6623–6636, 2021

Show all 76 references
  1. [9]

    Blind image quality assessment using statistical structural and luminance features,

    Q. Li, W. Lin, J. Xu, and Y . Fang, “Blind image quality assessment using statistical structural and luminance features,” IEEE Transactions on Multimedia, vol. 18, no. 12, pp. 2457–2469, 2016

  2. [10]

    Uncertainty-aware blind image quality assessment in the laboratory and wild,

    W. Zhang, K. Ma, G. Zhai, and X. Yang, “Uncertainty-aware blind image quality assessment in the laboratory and wild,” IEEE Transactions on Image Processing, vol. 30, pp. 3474–3486, 2021

  3. [11]

    PointXR: A toolbox for visualization and subjective evaluation of point clouds in virtual real- ity,

    E. Alexiou, N. Yang, and T. Ebrahimi, “PointXR: A toolbox for visualization and subjective evaluation of point clouds in virtual real- ity,” in International Conference on Quality of Multimedia Experience (QoMEX’20), 2020, pp. 1–6

  4. [12]

    Point cloud ren- dering after coding: Impacts on subjective and objective quality,

    A. Javaheri, C. Brites, F. Pereira, and J. Ascenso, “Point cloud ren- dering after coding: Impacts on subjective and objective quality,” IEEE Transactions on Multimedia , vol. 23, pp. 4049–4064, 2021

  5. [13]

    Predicting the perceptual quality of point cloud: A 3d-to-2d projection-based exploration,

    Q. Yang, H. Chen, Z. Ma et al. , “Predicting the perceptual quality of point cloud: A 3d-to-2d projection-based exploration,” IEEE Transac- tions on Multimedia , vol. 23, pp. 3877–3891, 2021

  6. [14]

    Perceptual quality assessment of 3d point clouds,

    H. Su, Z. Duanmu, W. Liu et al., “Perceptual quality assessment of 3d point clouds,” in IEEE International Conference on Image Processing (ICIP’19), 2019, pp. 3182–3186

  7. [15]

    No-reference point cloud quality as- sessment via domain adaptation,

    Q. Yang, Y . Liu, S. Chen et al. , “No-reference point cloud quality as- sessment via domain adaptation,” inIEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR’22) , 2022, pp. 21 179–21 188

  8. [16]

    Bridging the synthetic-to-authentic gap: Distortion-guided unsupervised domain adaptation for blind image quality assessment,

    A. Li, J. Wu, Y . Liu, and L. Li, “Bridging the synthetic-to-authentic gap: Distortion-guided unsupervised domain adaptation for blind image quality assessment,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR’24), 2024, pp. 28 422–28 431

  9. [17]

    LIVE image quality assessment database release 2,

    H. Sheikh, Z.Wang, L. Cormack, and A. Bovik, “LIVE image quality assessment database release 2,” 2003, http://live.ece.utexas.edu/research/ quality

  10. [19]

    Image database TID2013: Peculiarities, results and perspectives,

    N. Ponomarenko, L. Jin, O. Ieremeiev et al., “Image database TID2013: Peculiarities, results and perspectives,” Signal Processing: Image Com- munication, vol. 30, pp. 57–77, 2015

  11. [20]

    KonIQ-10k: An ecologi- cally valid database for deep learning of blind image quality assessment,

    V . Hosu, H. Lin, T. Sziranyi, and D. Saupe, “KonIQ-10k: An ecologi- cally valid database for deep learning of blind image quality assessment,” IEEE Transactions on Image Processing, vol. 29, pp. 4041–4056, 2020

  12. [21]

    KADID-10k: A large-scale artificially distorted IQA database,

    H. Lin, V . Hosu, and D. Saupe, “KADID-10k: A large-scale artificially distorted IQA database,” in International Conference on Quality of Multimedia Experience (QoMEX’19) , 2019, pp. 1–3

  13. [22]

    3D-PSRNet: Part segmented 3d point cloud reconstruction from a single image,

    P. Mandikal, N. K L, and R. Venkatesh Babu, “3D-PSRNet: Part segmented 3d point cloud reconstruction from a single image,” in European Conference on Computer Vision Workshops (ECCVW’18) , 2018

  14. [23]

    Robust real- time visual tracking using a 2d-3d model-based approach,

    E. Marchand, P. Bouthemy, F. Chaumette, and V . Moreau, “Robust real- time visual tracking using a 2d-3d model-based approach,” in IEEE International Conference on Computer Vision (ICCV’99) , vol. 1, 1999, pp. 262–268

  15. [24]

    Domain separation networks,

    K. Bousmalis, G. Trigeorgis, N. Silberman et al. , “Domain separation networks,” in Advances in Neural Information Processing Systems (NeurIPS’16), vol. 29, 2016

  16. [25]

    Unsupervised domain adaptation by backpropagation,

    Y . Ganin and V . Lempitsky, “Unsupervised domain adaptation by backpropagation,” in International Conference on Machine Learning (ICML’15), 2015, pp. 1180–1189

  17. [26]

    Adversarial discrimi- native domain adaptation,

    E. Tzeng, J. Hoffman, K. Saenko, and T. Darrell, “Adversarial discrimi- native domain adaptation,” inIEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR’17) , 2017, pp. 7167–7176

  18. [27]

    Blindly assess image quality in the wild guided by a self-adaptive hyper network,

    S. Su, Q. Yan, Y . Zhu et al., “Blindly assess image quality in the wild guided by a self-adaptive hyper network,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR’20) , 2020

  19. [28]

    Blind quality assessment of camera images based on low-level and high-level statistical features,

    Y . Liu, K. Gu, S. Wang et al. , “Blind quality assessment of camera images based on low-level and high-level statistical features,” IEEE Transactions on Multimedia , vol. 21, no. 1, pp. 135–146, 2019

  20. [29]

    Evaluation criteria for point cloud compression,

    R. Mekuria, Z. Li, C. Tulvan, and P. Chou, “Evaluation criteria for point cloud compression,” ISO/IEC MPEG w16332, Geneva, Switzerland , 2016

  21. [30]

    Geometric distortion metrics for point cloud compression,

    D. Tian, H. Ochimizu, C. Feng et al. , “Geometric distortion metrics for point cloud compression,” in Int. Conf. Image Processing (ICIP’17), 2017, pp. 3460–3464

  22. [31]

    A novel methodology for quality assessment of voxelized point clouds,

    E. M. Torlig, E. Alexiou, T. A. Fonseca et al., “A novel methodology for quality assessment of voxelized point clouds,” in Applications of Digital Image Processing XLI, vol. 10752. Int. Soc. Optics and Photonics, 2018, p. 107520I

  23. [32]

    On subjective and objective quality evaluation of point cloud geometry,

    E. Alexiou, “On subjective and objective quality evaluation of point cloud geometry,” in International Conference on Quality of Multimedia Experience (QoMEX’17), 2017, pp. 1–3. 13

  24. [33]

    On the performance of metrics to predict quality in point cloud representations,

    E. Alexiou and T. Ebrahimi, “On the performance of metrics to predict quality in point cloud representations,” in Applications of Digital Image Processing XL, vol. 10396, 2017, p. 103961H

  25. [34]

    Pcqm: A full-reference quality metric for colored 3d point clouds,

    G. Meynet, Y . Nehm´e, J. Digne, and G. Lavou´e, “Pcqm: A full-reference quality metric for colored 3d point clouds,” in International Conference on Quality of Multimedia Experience (QoMEX’20) , 2020

  26. [35]

    Inferring point cloud quality via graph similarity,

    Q. Yang, Z. Ma, Y . Xu et al., “Inferring point cloud quality via graph similarity,” IEEE Trans. Pattern Analysis and Machine Intelligence , pp. 1–1, 2020

  27. [36]

    Ms-graphsim: Inferring point cloud quality via multiscale graph similarity,

    Y . Zhang, Q. Yang, and Y . Xu, “Ms-graphsim: Inferring point cloud quality via multiscale graph similarity,” in Proceedings of the 29th ACM Int. Conf. Multimedia (ACMMM’21) . New York, NY , USA: Association for Computing Machinery, 2021, p. 1230–1238. [Online]. Available: htt...

  28. [37]

    MPED: Quantifying point cloud distortion based on multiscale potential energy discrepancy,

    Q. Yang, Y . Zhang, S. Chen et al. , “MPED: Quantifying point cloud distortion based on multiscale potential energy discrepancy,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 45, no. 5, pp. 6037–6054, 2023

  29. [38]

    A point-to-distribution joint geometry and color metric for point cloud quality assessment,

    A. Javaheri, C. Brites, F. Pereira, and J. Ascenso, “A point-to-distribution joint geometry and color metric for point cloud quality assessment,” in Int. Workshop on Multimedia Signal Processing (MMSP’21) , 2021, pp. 1–6

  30. [39]

    Point cloud quality assessment metric based on angular similarity,

    E. Alexiou, “Point cloud quality assessment metric based on angular similarity,” in Int. Conf. Multimedia and Expo (ICME’18) , 2018, pp. 1–6

  31. [40]

    A generalized Haus- dorff distance based quality metric for point cloud geometry,

    A. Javaheri, C. Brites, F. Pereira, and J. Ascenso, “A generalized Haus- dorff distance based quality metric for point cloud geometry,” in Inter- national Conference on Quality of Multimedia Experience (QoMEX’20), 2020, pp. 1–6

  32. [41]

    A color-based objective quality metric for point cloud contents,

    I. Viola, S. Subramanyam, and P. Cesar, “A color-based objective quality metric for point cloud contents,” in International Conference on Quality of Multimedia Experience (QoMEX’20) , 2020, pp. 1–6

  33. [42]

    Towards a point cloud structural similarity metric,

    E. Alexiou and T. Ebrahimi, “Towards a point cloud structural similarity metric,” in IEEE International Conference on Multimedia and Expo Workshops (ICMEW’20), 2020, pp. 1–6

  34. [43]

    Joint geometry and color projection-based point cloud quality metric,

    A. Javaheri, C. Brites, F. Pereira, and J. Ascenso, “Joint geometry and color projection-based point cloud quality metric,” IEEE Access, vol. 10, pp. 90 481–90 497, 2022

  35. [44]

    Point cloud projection and multi-scale feature fusion network based blind quality assessment for colored point clouds,

    W. Tao, G. Jiang, Z. Jiang, and M. Yu, “Point cloud projection and multi-scale feature fusion network based blind quality assessment for colored point clouds,” in ACM International Conference on Multimedia, 2021, p. 5266–5272

  36. [45]

    Deep learning- based quality assessment of 3d point clouds without reference,

    A. Chetouani, M. Quach, G. Valenzise, and F. Dufaux, “Deep learning- based quality assessment of 3d point clouds without reference,” in IEEE International Conference on Multimedia and Expo Workshops (ICMEW’21, 2021, pp. 1–6

  37. [46]

    PQA-Net: Deep no reference point cloud quality assessment via multi-view projection,

    Q. Liu, H. Yuan, H. Su et al. , “PQA-Net: Deep no reference point cloud quality assessment via multi-view projection,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 31, no. 12, pp. 4645– 4660, 2021

  38. [47]

    Plain-PCQA: No-reference point cloud quality assessment by analysis of plain visual and geometrical components,

    X. Chai, F. Shao, B. Mu et al. , “Plain-PCQA: No-reference point cloud quality assessment by analysis of plain visual and geometrical components,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 34, no. 7, pp. 6207–6223, 2024

  39. [48]

    Point cloud quality assessment: Large- scale dataset construction and learning-based no-reference approach,

    Y . Liu, Q. Yang, and Y . Xu, “Point cloud quality assessment: Large- scale dataset construction and learning-based no-reference approach,” arXiv preprint arXiv:2012.11895 , 2020

  40. [49]

    A no-reference quality assessment metric for point cloud based on captured video sequences,

    Y . Fan, Z. Zhang, W. Sun et al. , “A no-reference quality assessment metric for point cloud based on captured video sequences,” in Int. Workshop on Multimedia Signal Processing (MMSP’22), 2022, pp. 1–5

  41. [50]

    Evaluating point cloud from moving camera videos: A no-reference metric,

    Z. Zhang, W. Sun, Y . Zhu et al., “Evaluating point cloud from moving camera videos: A no-reference metric,” IEEE Transactions on Multime- dia, pp. 1–13, 2023

  42. [51]

    GPA-Net:no-reference point cloud quality assessment with multi-task graph convolutional network,

    Z. Shan, Q. Yang, R. Ye et al. , “GPA-Net:no-reference point cloud quality assessment with multi-task graph convolutional network,” IEEE Transactions on Visualization and Computer Graphics , pp. 1–13, 2023

  43. [52]

    Dynamic hypergraph convolutional network for no-reference point cloud quality assessment,

    W. Chen, Q. Jiang, W. Zhou et al., “Dynamic hypergraph convolutional network for no-reference point cloud quality assessment,” IEEE Trans- actions on Circuits and Systems for Video Technology , vol. 34, no. 10, pp. 10 479–10 493, 2024

  44. [53]

    MM-PCQA: Multi-modal learning for no-reference point cloud quality assessment,

    Z. Zhang, W. Sun, X. Min et al. , “MM-PCQA: Multi-modal learning for no-reference point cloud quality assessment,” in International Joint Conference on Artificial Intelligence , 2023, pp. 1–1

  45. [54]

    Deep domain confusion:maximizing for domain invariance,

    T. Eric, H. Judy, Z. Ning et al. , “Deep domain confusion:maximizing for domain invariance,” arXiv preprint arXiv:1412.3474 , 2014

  46. [55]

    Deep coral: Correlation alignment for deep domain adaptation,

    S. Baochen and S. Kate, “Deep coral: Correlation alignment for deep domain adaptation,” in European Conf. Computer Vision (ECCV’16) . Springer, 2016, pp. 443–450

  47. [56]

    Supervised representation learning: Transfer learning with deep autoencoders,

    Z. Fuzhen, C. Xiaohu, L. Ping et al. , “Supervised representation learning: Transfer learning with deep autoencoders,” in Int. Joint Conf. Artificial Intelligence (IJCAI’15) , 2015

  48. [57]

    No-reference screen content image quality assessment with unsupervised domain adaptation,

    B. Chen, H. Li, H. Fan, and S. Wang, “No-reference screen content image quality assessment with unsupervised domain adaptation,” IEEE Transactions on Image Processing , vol. 30, pp. 5463–5476, 2021

  49. [58]

    Unsupervised curriculum domain adapta- tion for no-reference video quality assessment,

    P. Chen, L. Li, J. Wu et al., “Unsupervised curriculum domain adapta- tion for no-reference video quality assessment,” in Proceedings of the IEEE/CVF Int. Conf. Computer Vision Workshops (ICCVW’21) , 2021, pp. 5158–5167

  50. [59]

    StyleAM: Perception-oriented unsu- pervised domain adaption for non-reference image quality assessment,

    Y . Lu, X. Li, J. Liu, and Z. Chen, “StyleAM: Perception-oriented unsu- pervised domain adaption for non-reference image quality assessment,” arXiv preprint arXiv:2207.14489 , 2022

  51. [60]

    Domain adaptation for vehicle detection from bird’s eye view lidar point cloud data,

    K. Saleh, A. Abobakr, M. Attia et al., “Domain adaptation for vehicle detection from bird’s eye view lidar point cloud data,” in Proceedings of the IEEE/CVF Int. Conf. Computer Vision Workshops (ICCVW’19) , Oct 2019

  52. [61]

    Dense 3d point cloud recon- struction using a deep pyramid network,

    P. Mandikal and V . B. Radhakrishnan, “Dense 3d point cloud recon- struction using a deep pyramid network,” in 2019 IEEE Winter Conf. Applications of Computer Vision (WACV’19) , 2019, pp. 1052–1060

  53. [62]

    Pvnet: A joint convolutional network of point cloud and multi-view for 3d shape recognition,

    H. You, Y . Feng, J. Rongrong, and Y . Gao, “Pvnet: A joint convolutional network of point cloud and multi-view for 3d shape recognition,” in Proceedings of the 26th ACM Int. Conf. Multimedia (ACMMM’18) , 2018, pp. 1310–1318

  54. [63]

    Hybrid-MVS: Robust multi-view reconstruction with hybrid optimization of visual and depth cues,

    C. Li, L. Zhou, H. Jiang et al. , “Hybrid-MVS: Robust multi-view reconstruction with hybrid optimization of visual and depth cues,” IEEE Transactions on Circuits and Systems for Video Technology , vol. 33, no. 12, pp. 7630–7644, 2023

  55. [64]

    On learning invariant representations for domain adaptation,

    H. Zhao, R. T. D. Combes, K. Zhang, and G. Gordon, “On learning invariant representations for domain adaptation,” in International Con- ference on Machine Learning (ICML’19) , 2019, pp. 7523–7532

  56. [65]

    A theory of learning from different domains,

    S. Ben-David, J. Blitzer, K. Crammer et al., “A theory of learning from different domains,” Machine Learning, vol. 79, no. 1, pp. 151–175, 2010

  57. [66]

    Do- main adaptation with conditional distribution matching and generalized label shift,

    R. Tachet des Combes, H. Zhao, Y .-X. Wang, and G. J. Gordon, “Do- main adaptation with conditional distribution matching and generalized label shift,” in Advances in Neural Information Processing Systems (NeurIPS’20), vol. 33, 2020, pp. 19 276–19 289

  58. [67]

    Detecting and correcting for label shift with black box predictors,

    Z. Lipton, Y .-X. Wang, and A. Smola, “Detecting and correcting for label shift with black box predictors,” in International Conference on Machine Learning (ICML’18) , 2018, pp. 3122–3130

  59. [68]

    Representation learning with contrastive predictive coding,

    A. van den Oord, Y . Li, and O. Vinyals, “Representation learning with contrastive predictive coding,” arXiv preprint arXiv:1807.03748 , 2018

  60. [69]

    Final report from the video quality experts group on the validation of objective models of video quality assessment,

    J. Antkowiak, J. Baina, V . Baroncini et al., “Final report from the video quality experts group on the validation of objective models of video quality assessment,” 2000

  61. [70]

    Image information and visual quality,

    H. R. Sheikh and A. C. Bovik, “Image information and visual quality,” IEEE Transactions on Image Processing , vol. 15, no. 2, pp. 430–444, 2006

  62. [71]

    Imagenet: A large-scale hierarchical image database,

    J. Deng, W. Dong, R. Socher et al., “Imagenet: A large-scale hierarchical image database,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR’09), 2009, pp. 248–255

  63. [72]

    Blind image quality assessment using a deep bilinear convolutional neural network,

    W. Zhang, K. Ma, J. Yan et al., “Blind image quality assessment using a deep bilinear convolutional neural network,” IEEE Trans. Circuits and Systems for Video Technology, vol. 30, no. 1, pp. 36–47, 2020

  64. [73]

    Metro: measuring error on simplified surfaces,

    P. Cignoni, C. Rocchini, and R. Scopigno, “Metro: measuring error on simplified surfaces,” Computer Graphics Forum, vol. 17, no. 2, pp. 167– 174, 1998

  65. [74]

    MPEG reference software,

    MPEG, “MPEG reference software,” https://git.mpeg.expert/MPEG/ 3dgh/v-pcc/software/mpeg-pcc-dmetric, 2023

  66. [75]

    PCQM: A full- reference quality metric for colored 3d point clouds,

    G. Meynet, Y . Nehm ´e, J. Digne, and G. Lavou ´e, “PCQM: A full- reference quality metric for colored 3d point clouds,” in International Conference on Quality of Multimedia Experience (QoMEX’20) , 2020, pp. 1–6

  67. [76]

    Inferring point cloud quality via graph similarity,

    Q. Yang, Z. Ma, Y . Xu et al. , “Inferring point cloud quality via graph similarity,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 44, no. 6, pp. 3015–3029, 2022

  68. [77]

    Point cloud quality assessment: Dataset construction and learning-based no-reference metric,

    Y . Liu, Q. Yang, Y . Xu, and L. Yang, “Point cloud quality assessment: Dataset construction and learning-based no-reference metric,” ACM Transactions on Multimedia Computing Communications and Applica- tions, vol. 19, no. 2s, pp. 1–26, 2023

Pith tools

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