Skip to content

Paper: No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction

License

Notifications You must be signed in to change notification settings

philox12358/COPP-Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

COPP-Net

Conference Paper: No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction , One of the best papers of SEKE 2023

Journal Paper: COPP-Net: No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction

Logo

This is the official implementation of "No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction". It currently includes code for the point cloud quality assessment(PCQA).

Introduction

With the rapid development of 3D vision applications based on point clouds, point cloud quality assessment (PCQA) is becoming an important research topic. However, the prior PCQA methods ignore the effect of local quality variance across different areas of the point cloud. To take an advantage of the quality distribution imbalance, we propose a no-reference point cloud quality assessment (NR-PCQA) method with local area correlation analysis capability, denoted as COPP-Net. More specifically, we split a point cloud into patches, generate texture and structure features for each patch, and fuse them into patch features to predict patch quality. Then, we gather the features of all the patches of a point cloud for correlation analysis, to obtain the correlation weights. Finally, the predicted qualities and correlation weights for all the patches are used to derive the final quality score. Experimental results show that our method outperforms the state-of-the-art benchmark NR-PCQA methods.

Performance on WPC Datasets

Logo

Running experiment

1. Download Code

Download this github repository to your computer, with the following folder structure:

———— 📁 code
———————— 🐍 1.1pc_to_patch.py
———————— 🐍 1.2patch_list_create.py
———————— 🐍 1.3train_ARKP.py
———————— 🐍 2.1patch_list_rank.py
———————— 🐍 2.2train_CORA.py
———————— 🐍 data_load_mos.py
———————— 🐍 data_load_mos_corr.py
———————— 🐍 model_ARKP.py
———————— 🐍 model_CORA.py
———————— 🐍 util.py
———— 📁 data
———————— 📁 WPC
———————————— 📁 Distortion_ply
———————————— 🐍 rename_error_file.py
———————————— 🔢 mos.xls
———————————— 🔢 test.xls
———————————— 🔢 train.xls
———— 📁 images
———— 📰 README.md

2. Data Preparation

Download the WPC datasets from here, and copy all the distorted 740 ply files into ./data/WPC/Distortion_ply folder. All files are in the same folder.

We have prepared the dataset segmentation file: mos.xlstest.xlstrain.xls Please use the rename_error_file.py file in the folder to check the Correct name of the point cloud file.

(The reason for doing this is that out of the 740 distorted files in the WPC database, 80 files contain incorrect

'_rounded' end needs to be modified, otherwise it will not run correctly.)

3. Install Dependencies

Please install CUDA and cudnn in advance. Our code can only run on GPU at present. In addition, Anaconda is recommended. Python >= 3.8 is required, and the Python libraries that need to be installed are as follows:

torch
tqdm
xlrd
argparse
numpy
pandas
plyfile
multiprocessing
sklearn
scipy
open3d

The above Python libraries are sufficient as long as they do not conflict with each other and do not require specific versions.

4. Run Code

Run the code one by one to obtain the experimental results:

1.1pc_to_patch.py

1.2patch_list_create.py

1.3train_ARKP.py

2.1patch_list_rank.py

2.2train_CORA.py

Supplement

For experiments with other data sets and other experiment settings, please modify the relevant parameters.

Bibtex

If this work is helpful for your research, please consider citing the following BibTeX entry.

Conference Paper:

@inproceedings{cheng2023no,
  title={No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction},
  author={Cheng, Jun and Su, Honglei and Korhonen, Jari},
  booktitle={35th International Conference on Software Engineering and Knowledge Engineering, SEKE 2023},
  pages={298--303},
  year={2023}
}

Journal Paper:

@article{zhu2025copp,
  title={COPP-Net: No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction},
  author={Zhu, Linxia and Cheng, Jun and Wang, Xu and Su, Honglei and Yuan, Hui and Song, Jiarun and Korhonen, Jari},
  journal={IEEE Transactions on Broadcasting},
  year={2025},
  publisher={IEEE}
}

About

Paper: No-Reference Point Cloud Quality Assessment via Weighted Patch Quality Prediction

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages