File size: 12,905 Bytes
d0e86f6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
import logging
import random
from contextlib import contextmanager
from dataclasses import dataclass
import numpy as np
import torch
import trimesh
from scipy.spatial import cKDTree
logger = logging.getLogger(__name__)
@contextmanager
def scoped_seed(seed: int | None):
"""Context manager that temporarily sets numpy and python random seeds."""
if seed is None:
yield
return
np_state = np.random.get_state()
py_state = random.getstate()
try:
np.random.seed(seed)
random.seed(seed)
yield
finally:
np.random.set_state(np_state)
random.setstate(py_state)
def merge_and_clean_mesh(
mesh: trimesh.Trimesh,
) -> tuple[np.ndarray, np.ndarray]:
"""Merge duplicate vertices and clean up mesh topology in-place.
GLB loading creates duplicate vertices at UV seams and hard edges.
This function merges them and removes degenerate/duplicate faces
and unreferenced vertices.
It also returns a mapping from the original (pre-merge) vertex indices
to the merged vertex indices, so callers can expand the merged
vertices back to the original topology when texture / UV must be
preserved.
Args:
mesh: Trimesh object to clean (modified in-place).
Returns:
vertex_merge_map: int array of shape (N_original,) where
``vertex_merge_map[i]`` is the index of the merged vertex
that original vertex *i* maps to.
pre_merge_faces: int array of shape (F_original, 3), the face
array before merging (uses original vertex indices).
"""
pre_merge_verts = mesh.vertices.copy()
pre_merge_faces = mesh.faces.copy()
mesh.merge_vertices()
remove_degenerate_faces(mesh)
remove_duplicate_faces(mesh)
remove_unreferenced_vertices(mesh)
# For each original vertex, find its index in the merged mesh via
# nearest-neighbour lookup. This is robust to floating-point
# tolerance differences between our code and trimesh's internal
# merge logic.
tree = cKDTree(mesh.vertices)
distances, vertex_merge_map = tree.query(pre_merge_verts)
assert np.all(distances < 1e-6), (
"Some pre-merge vertices have no close match in the "
f"merged mesh (max dist={distances.max():.2e}). "
"merge_vertices() may have altered positions."
)
return vertex_merge_map, pre_merge_faces
def get_mesh_features(mesh: trimesh.Trimesh, with_normals: bool) -> torch.Tensor:
"""
Extract vertex positions and optionally normals from a mesh.
Args:
mesh: Input triangle mesh.
with_normals: If True, concatenate normalized vertex normals.
Returns:
features (V, 3|6): Vertex positions, optionally with normals.
"""
features = torch.from_numpy(mesh.vertices).float()
if with_normals:
normals = torch.from_numpy(mesh.vertex_normals.copy()).float()
normals = torch.nn.functional.normalize(normals, p=2, dim=-1)
features = torch.cat([features, normals], dim=-1)
return features
def remove_degenerate_faces(mesh: trimesh.Trimesh) -> None:
"""Remove degenerate faces from a mesh (compatible with old and new trimesh versions)."""
if hasattr(mesh, "remove_degenerate_faces"):
mesh.remove_degenerate_faces()
else:
mesh.update_faces(mesh.nondegenerate_faces())
def remove_duplicate_faces(mesh: trimesh.Trimesh) -> None:
"""Remove duplicate faces from a mesh (compatible with old and new trimesh versions)."""
if hasattr(mesh, "remove_duplicate_faces"):
mesh.remove_duplicate_faces()
else:
mesh.update_faces(mesh.unique_faces())
def remove_unreferenced_vertices(mesh: trimesh.Trimesh) -> None:
"""Remove unreferenced vertices from a mesh (compatible with old and new trimesh versions)."""
if hasattr(mesh, "remove_unreferenced_vertices"):
mesh.remove_unreferenced_vertices()
else:
mesh.update_vertices(mask=mesh.referenced_vertices)
def decimate_mesh(
mesh: trimesh.Trimesh,
target_faces: int = 40_000,
verbose: bool = True,
) -> trimesh.Trimesh:
"""Decimate a mesh using quadric decimation to reduce face count.
Args:
mesh: Trimesh object to decimate.
target_faces: Target number of faces. Mesh with fewer faces is unchanged.
verbose: If True, log before/after statistics.
Returns:
Decimated mesh.
"""
original_faces = len(mesh.faces)
if original_faces <= target_faces:
if verbose:
logger.info(
f"[Decimation] Skipped: mesh has {original_faces:,} faces "
f"(<= target {target_faces:,})"
)
return mesh
if verbose:
logger.info(f"[Decimation] Before: {original_faces:,} faces")
decimated = mesh.simplify_quadric_decimation(face_count=target_faces)
if verbose:
logger.info(f"[Decimation] After: {len(decimated.faces):,} faces")
return decimated
# ---------------------------------------------------------------------------
# Mesh normalization
# ---------------------------------------------------------------------------
@dataclass
class NormalizationParams:
"""Parameters that describe the normalization applied to a mesh."""
bbox_center: np.ndarray | None
scale: float
def normalize_mesh(
mesh: trimesh.Trimesh,
center: bool = True,
) -> tuple[trimesh.Trimesh, NormalizationParams]:
"""Scale a mesh so that it fits inside the [-1, 1]^3 cube.
The mesh is modified **in-place** and also returned for convenience.
Args:
mesh: Input mesh.
center: Whether to translate the bounding-box center to the
origin.
Returns:
A ``(mesh, params)`` tuple. *mesh* is the same object
(modified in-place) and *params* is a
:class:`NormalizationParams` that can be passed to
:func:`denormalize_mesh` to revert the transform.
"""
bbox_center = None
if center:
bbox_min = mesh.vertices.min(axis=0)
bbox_max = mesh.vertices.max(axis=0)
bbox_center = (bbox_min + bbox_max) / 2.0
mesh.vertices -= bbox_center
extents = mesh.vertices.max(axis=0) - mesh.vertices.min(axis=0)
scale = extents.max()
if scale > 0:
mesh.vertices *= 2.0 / scale
params = NormalizationParams(
bbox_center=bbox_center,
scale=float(scale),
)
return mesh, params
def denormalize_mesh(
mesh: trimesh.Trimesh,
params: NormalizationParams,
) -> trimesh.Trimesh:
"""Revert the normalization.
Args:
mesh: A mesh living in the normalized ``[-1, 1]^3`` space.
params: The :class:`NormalizationParams` returned by
:func:`normalize_mesh` on the *original* input mesh.
Returns:
The same mesh object, modified in-place.
"""
if params.scale > 0:
mesh.vertices *= params.scale / 2.0
if params.bbox_center is not None:
mesh.vertices += params.bbox_center
mesh._cache.delete("face_normals")
mesh._cache.delete("vertex_normals")
return mesh
# ---------------------------------------------------------------------------
# Surface sampling
# ---------------------------------------------------------------------------
def sample_surface(
mesh: trimesh.Trimesh,
n_points: int,
seed: int = 0,
with_normals: bool = True,
device: str | None = None,
dtype: "torch.dtype | None" = None,
) -> torch.Tensor:
"""Sample *n_points* on the mesh surface and return a tensor.
Points are sampled uniformly w.r.t. surface area.
Args:
mesh: Input mesh (must have faces).
n_points: Number of points to sample.
seed: Random seed for reproducibility.
with_normals: If True, concatenate face normals to the
positions, yielding shape ``(1, n_points, 6)``.
Otherwise shape is ``(1, n_points, 3)``.
Returns:
Tensor of shape ``(1, n_points, 3|6)`` on the requested
device / dtype.
"""
points, face_indices = trimesh.sample.sample_surface(
mesh,
count=n_points,
seed=seed,
)
surface = torch.from_numpy(np.asarray(points))
if with_normals:
normals = torch.from_numpy(
np.asarray(mesh.face_normals[face_indices]),
)
surface = torch.cat([surface, normals], dim=-1)
surface = surface.unsqueeze(0)
if dtype is not None:
surface = surface.to(dtype)
if device is not None:
surface = surface.to(device)
return surface
def remove_floaters(
mesh: trimesh.Trimesh,
threshold: float = 0.0,
) -> trimesh.Trimesh:
"""Remove small disconnected components (floaters) from a mesh.
Args:
mesh: Trimesh object to clean.
threshold: Minimum size as fraction of largest component. Components with
fewer faces than (largest_component_faces * threshold) are removed.
Returns:
Cleaned mesh.
"""
components = mesh.split(only_watertight=False)
num_components = len(components)
if num_components <= 1:
logger.debug(f"[Floaters] Skipped: mesh has {num_components} component(s)")
return mesh
max_faces = max(len(c.faces) for c in components)
min_faces = int(max_faces * threshold)
kept = [c for c in components if len(c.faces) >= min_faces]
if not kept:
logger.warning(
f"[Floaters] No components kept after filtering "
f"(threshold={threshold}, min_faces={min_faces}), returning original mesh"
)
return mesh
logger.info(
f"[Floaters] Removed {num_components - len(kept)} component(s): "
f"{num_components} -> {len(kept)}"
)
return trimesh.util.concatenate(kept)
def normalize_mesh_to_bounds(
mesh: trimesh.Trimesh,
bounds: tuple[float, float, float, float, float, float] = (
-1.0,
-1.0,
-1.0,
1.0,
1.0,
1.0,
),
) -> trimesh.Trimesh:
"""Rescale mesh only if its bounding box exceeds the specified bounds.
Args:
mesh: Trimesh object to normalize.
bounds: Target bounds as (min_x, min_y, min_z, max_x, max_y, max_z).
Returns:
Original mesh if within bounds, otherwise a new mesh scaled to fit.
"""
target_min = np.array(bounds[:3])
target_max = np.array(bounds[3:])
target_size = target_max - target_min
mesh_min, mesh_max = mesh.bounds
mesh_size = mesh_max - mesh_min
# Check if mesh is already within bounds
if np.all(mesh_min >= target_min) and np.all(mesh_max <= target_max):
return mesh
# Scale uniformly to fit within bounds (only if exceeding)
scale = min(1.0, (target_size / np.maximum(mesh_size, 1e-8)).min())
target_center = (target_min + target_max) / 2
mesh_center = (mesh_min + mesh_max) / 2
new_vertices = (mesh.vertices - mesh_center) * scale + target_center
return trimesh.Trimesh(
vertices=new_vertices,
faces=mesh.faces.copy(),
process=False,
)
@dataclass(eq=False)
class MeshPostprocessor:
bounds: tuple[float, float, float, float, float, float] = (
-1.005,
-1.005,
-1.005,
1.005,
1.005,
1.005,
)
face_decimation: int = -1
floaters_threshold: float = 0.0
verbose: bool = True
def __post_init__(self):
assert self.bounds[0] == self.bounds[1] == self.bounds[2]
assert self.bounds[3] == self.bounds[4] == self.bounds[5]
@torch.no_grad()
def process_mesh(
self,
mesh: trimesh.Trimesh,
seed: int | None = None,
) -> trimesh.Trimesh:
"""
Post-process a single Trimesh mesh (decimation, floaters removal, etc.)
Args:
mesh: Input trimesh to process.
seed: Random seed for reproducibility.
Returns:
Processed trimesh.
"""
with scoped_seed(seed):
# Clean up mesh topology
mesh.merge_vertices() # Merge duplicates
remove_degenerate_faces(mesh) # Remove bad faces
remove_duplicate_faces(mesh) # Remove identical faces
remove_unreferenced_vertices(mesh) # Clean up unused vertices
# -- Mesh decimation
if self.face_decimation != -1:
mesh = decimate_mesh(
mesh, target_faces=self.face_decimation, verbose=self.verbose
)
# -- Remove floaters
if self.floaters_threshold > 0.0:
mesh = remove_floaters(mesh, threshold=self.floaters_threshold)
return mesh
|