Papers › CloudFixer: Test-Time Adaptation for 3D Point Clouds via Diffusion-Guided Geometric...

CloudFixer: Test-Time Adaptation for 3D Point Clouds via Diffusion-Guided Geometric Transformation

23 Jul 2024arXiv:2407.16193archive 2025-07-28

Hajin Shim, Changhun Kim, Eunho Yang

3D point clouds captured from real-world sensors frequently encompass noisy points due to various obstacles, such as occlusion, limited resolution, and variations in scale. These challenges hinder the deployment of pre-trained point cloud recognition models trained on clean point clouds, leading to significant performance degradation. While test-time adaptation (TTA) strategies have shown promising results on this issue in the 2D domain, their application to 3D point clouds remains under-explored. Among TTA methods, an input adaptation approach, which directly converts test instances to the source domain using a pre-trained diffusion model, has been proposed in the 2D domain. Despite its robust TTA performance in practical situations, naively adopting this into the 3D domain may be suboptimal due to the neglect of inherent properties of point clouds, and its prohibitive computational cost. Motivated by these limitations, we propose CloudFixer, a test-time input adaptation method tailored for 3D point clouds, employing a pre-trained diffusion model. Specifically, CloudFixer optimizes geometric transformation parameters with carefully designed objectives that leverage the geometric properties of point clouds. We also substantially improve computational efficiency by avoiding backpropagation through the diffusion model and a prohibitive generation process. Furthermore, we propose an online model adaptation strategy by aligning the original model prediction with that of the adapted input. Extensive experiments showcase the superiority of CloudFixer over various TTA baselines, excelling in handling common corruptions and natural distribution shifts across diverse real-world scenarios. Our code is available at https://github.com/shimazing/CloudFixer

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2407.16193")

Code

Syntology Ran 13 of 16 code samples harvested from 1 repository linked to this paper; 3 have no recorded run. Of those that ran: 1 ran · violated contract; 2 ran · fixture could not drive it; 10 ran with no contract checked.

By repository: found in paper text by Syntology: 16 samples from 1 repository, 13 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

shimazing/CloudFixer found in paper text by SyntologyMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

16 samples harvested; 13 ran; 0 honoured the contract we drafted; 3 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · violated contract
2ran · fixture could not drive it
10ran
3unverified

Licence: 0 of the 16 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from shimazing/CloudFixer. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

count_parameters shimazing/CloudFixer/utils/model_helper.py found in paper text by Syntology ran MIT (permissive) · df23da82fbd7ff7b · report
get_graph_feature shimazing/CloudFixer/classifier/models.py found in paper text by Syntology ran · fixture could not drive it MIT (permissive) · 9a8756778dd8234a · report
get_optim shimazing/CloudFixer/diffusion/build_model.py found in paper text by Syntology ran MIT (permissive) · f00fffed990205f4 · report
import_model shimazing/CloudFixer/utils/model_helper.py found in paper text by Syntology ran MIT (permissive) · 43510d2695421124 · report
knn shimazing/CloudFixer/classifier/models.py found in paper text by Syntology ran · fixture could not drive it fingerprinted MIT (permissive) · cdd0141594039dcb · report
min_max_normalize shimazing/CloudFixer/classifier/models.py found in paper text by Syntology ran fingerprinted MIT (permissive) · dc21bf2cf5f7160d · report
rotate_batch shimazing/CloudFixer/utils/rotnet_utils.py found in paper text by Syntology ran MIT (permissive) · c3cb7594a2a0ff42 · report
rotate_batch_with_labels shimazing/CloudFixer/utils/rotnet_utils.py found in paper text by Syntology ran fingerprinted MIT (permissive) · f7c1ac6b75f91e49 · report
rotate_point_cloud_by_angle shimazing/CloudFixer/utils/rotnet_utils.py found in paper text by Syntology ran MIT (permissive) · a9abc40d045ad04c · report
sample shimazing/CloudFixer/train_dm.py found in paper text by Syntology ran MIT (permissive) · a82694d00afd7354 · report
softmax_entropy shimazing/CloudFixer/utils/losses.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 6ae0cdec9fe5f43b · report
str2bool shimazing/CloudFixer/cfgs/cfgs_train_classifier.py found in paper text by Syntology ran · violated contract MIT (permissive) · 7c508037b40522af · report
sum_except_batch shimazing/CloudFixer/utils/losses.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 90c529ca8e85d3db · report
compute_loss_and_nll shimazing/CloudFixer/utils/losses.py found in paper text by Syntology unverified MIT (permissive) · b8c2aca158049aa6 · report
split_set shimazing/CloudFixer/train_classifier.py found in paper text by Syntology unverified MIT (permissive) · 0e98b0df5bd3b28c · report
test shimazing/CloudFixer/train_classifier.py found in paper text by Syntology unverified MIT (permissive) · 181c563360b63a31 · report

Tasks

Computational EfficiencyTest-time Adaptation

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

Diffusion

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections