Editing
Neural Radiance Fields and 3D AI
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''3D Gaussian Splatting reconstruction:''' <syntaxhighlight lang="python"> # 3DGS pipeline: capture images β COLMAP poses β train Gaussians β render # Using the original 3DGS repository or simplified libraries # Step 1: Prepare input images and estimate camera poses with COLMAP import subprocess def run_colmap(image_dir, output_dir): subprocess.run(["colmap", "automatic_reconstructor", "--workspace_path", output_dir, "--image_path", image_dir, "--camera_model", "SIMPLE_RADIAL"]) # Step 2: Train 3D Gaussians (using gaussian-splatting library) # from gaussian_splatting.train import train_gaussians # gaussians = train_gaussians( # colmap_path="./colmap_output", # output_path="./trained_scene", # iterations=30000, # ) # Using nerfstudio for a high-level interface def train_nerf_scene(image_dir: str, method: str = "splatfacto"): """ Train a NeRF or Gaussian Splat scene using nerfstudio. method: 'nerfacto' (NeRF), 'splatfacto' (Gaussian Splatting) """ # ns-process-data images --data {image_dir} --output-dir data/processed # ns-train {method} --data data/processed # ns-render camera-path --load-config outputs/*/config.yml \ # --camera-path-filename camera_path.json --output-path render.mp4 pass # Instant-NGP training (much faster alternative) # import pyngp as ngp # testbed = ngp.Testbed() # testbed.load_training_data("./transforms.json") # COLMAP β transforms format # testbed.train(1000) # Trains in seconds! # image = testbed.render(width=1920, height=1080) </syntaxhighlight> ; 3D AI tools and frameworks : '''NeRF training''' β Nerfstudio (nerfacto, splatfacto), Instant-NGP (NVIDIA) : '''3D Gaussian Splatting''' β Original 3DGS, Gaussian Opacity Fields, Mip-Splatting : '''Text-to-3D''' β Shap-E (OpenAI), Wonder3D, Zero123, DreamFusion : '''Pose estimation''' β COLMAP (SfM), PixSFM, HLoc : '''Real-time rendering''' β WebGL exports from Gaussian Splatting; NeRFβmesh conversion </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information