Notes

V. Actual papers

Published

July 15, 2026

An Overview

Note: each papers are my initial thoughts and obviously needs further investigation (might contain miscomprehension.)

Geometric processing

  • Subgrid Marching Tetrahedra
    • Marching cube (and other similiar marching-based meshing algorithm) but better that preserves finer features at the same grid resolution and time
      • Supposedly, their claim is it would fix the notorious reconstruction artifacts that breaks the immersion when viewed up-close
      • Similiar to how 3DGS uses anistropic kernel to, try, model such fine features
    • No reference to memory cost.
    • Context: most marching algorithms records single face; quality purely on the hands of the grid resolution and visible artifacts.
    • Idea: use generalized normal coordinates with arbitrary amount of intersections to encode more surface informations within a grid (hence, subgrid.)
  • Dual Contouring of Signed Distance Data
    • Hermite mentioned; referenced in O-Voxel from TRELLIS.2 to bridge the unstructured point cloud to a more structured dual space that better supports flow models
    • Seems to better remove the aliasing from marching cubes on grid-sampled SDFs specifically.
      • But seems to not really improve the reconstruction of high-frequency features, although it does seem to have reduce the amount of holes and blobs—a common problem.
    • Idea: iterative minimization of a cost function tailor-made for this specific popular problem space.
      • Uses some SDF values to re-triangulate and find a better solution to the meshing
  • SAND: Spatially Adaptive Network Depth for Fast Sampling of Neural Implicit Surfaces
    • NeRF with LOD
    • Idea: train a NeRF-like network that supports evaluation and training at various depth and another network for querying how deep to evaluate the network at the queried point.
      • Allows conditional early stopping of network evaluation
    • Reminds me of ResNet and diffusion/flow models. Can we do something similiar (e.g., spatially-varying step frequency)—efficiently?
  • Points as Tori: Fast Pointwise Signed Distance for Point Clouds
    • Idea: torus can asymptotically represent cylindrical/planar surfaces, and also spherical/ellipsoidal/saddles, while also having an analytical SDF that is parallelizable. We let each point in the point cloud be represented by some parts (or all) of the torus.
    • Personally, while it might achieve better surface reconstruction against other methods at equal amount of points, most point clouds are not dense enough to produce an immersive reconstruction.
      • However, a human obviously can still reconstruct a pointcloud immersively. For an immersive reconstruction, it likely needs some priors of some kind (e.g., semantic, generative, etc.) A blend of metrologically-accurate hard constraint with visually-pleasing realistic fill-ins.
  • NeuBase: Spline Surfaces with Neural Basis Functions
    • Idea: reconstruction with real-time deformation of the digitally reconstructed object
      • Uses neural parametric surface instead of neural implicit surface (e.g., occupancy, volume, SDF)
      • Allows deformation without re-training
    • This shows the importance of reconstruction: Allowing arbitrary manipulation/control without the hassle of physical reality, but also only useful if there’s a way to transport this digitally manipulated object back to reality.
  • NeuPPS: Neural Piecewise Parametric Surfaces
    • By the same group (?) and seems to be superseded by NeuBase.
  • Continuity-Enhancing Degree Elevation and Splits
    • The infamous discontinuity in reflection problem. Who knew derivatives will be important here?
    • Idea: Enables \(C^2\) continuity on Bezier curves (while B-spline curves are \(C^2\) by default.)

Geometric synthesis

(Has a distinctive CVPR-style of empirical emphasis)

  • Prox-E: Fine-grained 3D Shape Editing via Primitive-based Abstractions
    • “Cambrian explosion” strongly implies a coming mass extinction…
    • Idea: 3D editing via 3D-native manipulation without 2D multi-view image editing proxy using TRELLIS (ding)
      • Manipulation of the latent space during sparse-structure or fine-geometric stage, or fine-appearance stage.
    • Clearly, TRELLIS(2) has become an integral research to experiment how to effectively manipulate the 3D space itself semantically via compact latent spaces and conditional/interpolated generative flow model(s).
  • CubePart: An Open-Vocabulary Part-Controllable 3D Generator
    • Idea: Parts-segmented 3D generation for object articulation
    • Explicit mentioning of the manipulation of the 3D latent space and VAEs; again, similiar to TRELLIS(2).
  • Strips as Tokens: Artist Mesh Generation with Native UV Segmentation
    • Idea: mesh reconstruction from point clouds via autoregressive model and native semantically-meaningful UV island segmentation
  • MeshFlow: Mesh Generation with Equivariant Flow Matching
    • Idea: mesh-native flow-based generation by respecting invariances/symmetries to the permutation of faces and cyclical rotation of vertices of the triangle.
      • Note: it starts with a fixed-size triangle soup
    • Comparisons have been done against existing mesh-based generation, it would be interesting to see how it does against TRELLIS and how well it does in reconstruction.
  • Matern Noise for Triangulation-Agnostic Flow Matching on Meshes
    • Idea: deformation-based mesh generation that uses Matern Noise instead of Gaussian noise for better better flow-generation specifically over triangles.

Radiances

Reconstruction

  • A Bayesian Approach for Task-Specific Next-Best-View Selection with Uncertain Geometry
    • Idea: Active reconstruction on point clouds
    • Useful if we want to limit cameras movements (or something along the lines of that) for autonomous understanding of our world, especially when we already have an object/scene/region we are interested in.
  • Gradient-based Approximation of Nonuniform Low-Discrepancy Samples
    • Idea: previously, quasi-Monte Carlo (QMC) uses low-discrepancy uniform samples (not random); combining QMC with importance sampling requires warping the originally low-discrepant uniform samples, but could result in importanced samples that are no longer low-discrepant.
  • iskra: A System for Inverse Geometry Processing
    • Idea: roughly similiar to differentiable rendering where iskra is a software platform for geometry that efficiently supports (automatic?) differentiation on common geometric processing operations that bridges the classical numerical algorithms to the modern machine learning frameworks.
    • While I think this would be immediately useful, would it hold up on the idea of direct, semantic-driven manipulation of space (e.g., geometries) that is increasingly prevalent?
  • A Few-Step Generative Model on Cumulative Flow Maps
    • Idea: faster and more flexible generative modelling via cumulative-field parameterization
      • Also show applications in 3D SDF generation as steps over functions representing the 3D SDF.
  • Generative Modeling with Orbit-Space Particle Flow Matching
    • Idea: particle generation via flow matching that handles permutation invariant inherent in point clouds; however, it is still fixed on point counts.
    • Flow-matching and diffusion based methods works well in image/pixel-space since it has a set of common resolution to “diffuse”.
      • However, 3D data does not have a pre-defined common set of resolution, but it should not be a big deal.
      • Most images and 3D generative models work in latent space now that has pre-defined “resolution” (i.e., dimension.)
  • Sample Matching for Joint Extinction Gradient Estimation in Differentiable Volume Rendering
    • Idea: Differentiating w.r.t. the extinction coefficient \(\sigma_t\) induces a scattering (on vertices) and transmittance term (on segments.) However, these two terms further induce negative correlation (somehow?) which can be cancelled out to reduce the variance by sharing the same point of evaluation while keeping unbiasedness.
  • Robust Computation of Boundary Path Integrals Using Kernel-Density Estimation
    • Idea: soft rasterization but for PSDR.

Future Work

Interesting papers need further investigation.