免費編輯器
1.0.0
Free-Editor 可讓您透過僅編輯場景的單一視圖來編輯 3D 場景。編輯無需培訓,只需3 分鐘即可完成!而不是70 分鐘!在索塔。
歡迎觀看?此存儲庫提供最新更新。
✅ [2023.12.21] : 我們在 arXiv 上發布了我們的論文 Free-Editor。
✅ [2023.12.18] : 發布專案頁。
執行以下操作-
conda create --name nerfstudio -y python=3.9
conda activate nerfstudio
python -m pip install --upgrade pip
pip uninstall torch torchvision functorch tinycudann
conda install -c " nvidia/label/cuda-11.8.0 " cuda-toolkit
pip install torch==2.1.2+cu118 torchvision==0.16.2+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
pip install ninja git+https://github.com/NVlabs/tiny-cuda-nn/ # subdirectory=bindings/torch
git clone https://github.com/DiffSK/configobj.git
cd configobj
python setup.py install
pip install nerfstudio
git clone https://github.com/nerfstudio-project/nerfstudio.git
cd nerfstudio
pip install --upgrade pip setuptools
pip install -e .
ns-download-data nerfstudio --capture-name=poster
ns-train nerfacto --data data/nerfstudio/poster
If you start seeing on your linux terminal that it started training, then it means everything is good to go!
您可能還必須安裝其他依賴項。
要下載其他資料集,請訪問此連結 - https://huggingface.co/datasets/yangtaointernship/RealEstate10K-subset/tree/main
這裡,「synthetic_scenes.zip」是 Deepvoxels 資料。
「nerf_synthetic」和攪拌機資料集可能是相同的資料集。
「frames.zip」是 RealEstate10K 資料集的 200 個場景的擷取畫面。 “train.zip”是相機檔。
對於閃亮資料集,請造訪 - https://nex-mpi.github.io/
對於空間資料集,
git clone https://github.com/augmentedperception/spaces_dataset
conda deactivate
conda create --name nerfbase
conda activate nerfbase
pip install nerfbaselines
下載範例資料集。例如,
將花園場景下載到快取資料夾。
mdkir data
cd data
mkdir nerf_dataset
cd nerf_dataset
nerfbaselines download-dataset external://mipnerf360/garden
nerfbaselines download-dataset external://nerfstudio
nerfbaselines download-dataset external://mipnerf360/kitchen -o kitchen
git clone https://huggingface.co/Salesforce/blip2-opt-2.7b
如果您想使用較小的版本,請使用此
from transformers import BlipProcessor, BlipForConditionalGeneration
processor = BlipProcessor.from_pretrained( " Salesforce/blip-image-captioning-base " )
model = BlipForConditionalGeneration.from_pretrained( " Salesforce/blip-image-captioning-base " )
git clone https://huggingface.co/stabilityai/stable-diffusion-3-medium
huggingface-cli login
python src/fedit/dataset_creation.py
python train.py
這項工作建立在許多令人驚嘆的研究工作和開源專案的基礎上,非常感謝所有作者的分享!
如果您發現我們的論文和程式碼對您的研究有用,請考慮給予星星和引用。
@misc { karim2023freeeditor ,
title = { Free-Editor: Zero-shot Text-driven 3D Scene Editing } ,
author = { Nazmul Karim and Umar Khalid and Hasan Iqbal and Jing Hua and Chen Chen } ,
year = { 2023 } ,
eprint = { 2312.13663 } ,
archivePrefix = { arXiv } ,
primaryClass = { cs.CV }
}