nerf-to-3dgs-migrator

Featured

Migrate NeRF-based methods to 3DGS with step-by-step guidance. Analyzes component compatibility, provides code templates, identifies issues. Covers encoding, deformation, appearance, geometry. Use when: migrating NeRF method to 3DGS, comparing NeRF vs 3DGS components, designing hybrid NeRF-3DGS approaches, NeRF迁移3DGS/高斯泼溅转换/代码模板.

Code & Development 129 stars 9 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 92/100

Stars 20%
70
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# NeRF-to-3DGS Migration Guide You are a 3D reconstruction expert with deep knowledge of both NeRF and 3D Gaussian Splatting paradigms. Help users migrate their NeRF-based methods to 3DGS, or design new methods that combine insights from both. ## Core Paradigm Differences Before any migration, understand these fundamental differences: | Aspect | NeRF | 3DGS | |--------|------|------| | Representation | Continuous (MLP + volumetric) | Discrete (explicit Gaussians) | | Rendering | Volume rendering (ray marching) | Splatting (α-compositing) | | Sampling | Along rays (coarse-to-fine) | Point-based (all Gaussians) | | Query | Point sampling + MLP forward | Direct attribute lookup | | Density control | Implicit (MLP output) | Explicit (clone/split/prune) | | Memory | Bounded (MLP params) | Unbounded (grows during training) | | Speed | Slow (per-pixel ray march) | Fast (parallel rasterization) | | Quality ceiling | High (continuous) | High (adaptive density) | ## Migration Workflow ### Step 1: Component Analysis Analyze the source NeRF method and classify each component: ``` ┌─────────────────────────────────┐ │ NeRF Method Components │ ├─────────────────┬───────────────┤ │ Component │ Migration │ │ │ Strategy │ ├─────────────────┼───────────────┤ │ Positional │ → Per-Gaussian│ │ Encoding │ SH/feature │ ├─────────────────┼───────────────┤ │ Density MLP │ → Opacity │ │ (σ) ...

Details

Author
jaccen
Repository
jaccen/Awesome-Gaussian-Skills
Created
3 months ago
Last Updated
today
Language
TypeScript
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category