From 1eb63191b55e97f38d50a77485e12bde6f6ef920 Mon Sep 17 00:00:00 2001 From: HeaIn Date: Wed, 12 Feb 2025 13:55:57 +0900 Subject: [PATCH] Fixing bounding box issue when exporting poisson mesh --- nerfstudio/scripts/exporter.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nerfstudio/scripts/exporter.py b/nerfstudio/scripts/exporter.py index 528b2f3aaf..c26797a5c8 100644 --- a/nerfstudio/scripts/exporter.py +++ b/nerfstudio/scripts/exporter.py @@ -288,12 +288,6 @@ class ExportPoissonMesh(Exporter): """Name of the normal output.""" save_point_cloud: bool = False """Whether to save the point cloud.""" - use_bounding_box: bool = True - """Only query points within the bounding box""" - bounding_box_min: Tuple[float, float, float] = (-1, -1, -1) - """Minimum of the bounding box, used if use_bounding_box is True.""" - bounding_box_max: Tuple[float, float, float] = (1, 1, 1) - """Minimum of the bounding box, used if use_bounding_box is True.""" obb_center: Optional[Tuple[float, float, float]] = None """Center of the oriented bounding box.""" obb_rotation: Optional[Tuple[float, float, float]] = None