Neural fields have achieved impressive advancements in view synthesis and scene reconstruction. However, editing these neural fields remains challenging due to the implicit encoding of geometry and texture information. In this paper, we propose DreamEditor, a novel framework that enables users to perform controlled editing of neural fields using text prompts. By representing scenes as mesh-based neural fields, DreamEditor allows localized editing within specific regions. DreamEditor utilizes the text encoder of a pretrained text-to-Image diffusion model to automatically identify the regions to be edited based on the semantics of the text prompts. Subsequently, DreamEditor optimizes the editing region and aligns its geometry and texture with the text prompts through score distillation sampling [Poole et al. 2022]. Extensive experiments have demonstrated that DreamEditor can accurately edit neural fields of real-world scenes according to the given text prompts while ensuring consistency in irrelevant areas. DreamEditor generates highly realistic textures and geometry, significantly surpassing previous works in both quantitative and qualitative evaluations.
Install with pip:
pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 torchaudio===0.12.1+cu116
pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch
pip install diffusers==0.18.2
pip install huggingface_hub==0.16.4
pip install open3d==0.17.0 trimesh==3.22.5 pymeshlab
pip install git+https://github.com/S-aiueo32/contextual_loss_pytorch.git
# install frnn
git clone --recursive https://github.com/lxxue/FRNN.git
# install a prefix_sum routine first
cd FRNN/external/prefix_sum
pip install .
# install FRNN
cd ../../ # back to the {FRNN} directory
# this might take a while since I instantiate all combinations of D and K
pip install -e .
# might need to restart the bash to make importing this package work
Training requirements
huggingface-cli login
command.You can ignore this step and use the initial models we provide.
bash run_step1.sh
bash run_step2.sh
bash run_step3.sh
Download Results and unzip in res_model
bash test.sh
Answer:
python train_init_nerf.py -O --workspace ./res/dtu_scan105-grid --test --save_mesh
Answer: We use meshlab to align the pose of the mesh. Click Filters->Normals,Curvatures and Orientation->Matrix: Set from translation\rotation\scale. Make sure the Y-axis is vertical and upward to the ground, and the object is oriented in the same direction as the z-axis.
If you find this code helpful for your research, please cite:
@article{zhuang2023dreameditor,
title={DreamEditor: Text-Driven 3D Scene Editing with Neural Fields},
author={Zhuang, Jingyu and Wang, Chen and Liu, Lingjie and Lin, Liang and Li, Guanbin},
journal={arXiv preprint arXiv:2306.13455},
year={2023}
}
This code based on Stable-Dreamfusion, Dreambooth, DAAM.