NeRF-pytorc的Linux运行

NeRF 代码在Linux系统上运行

github官方下载源代码 本篇讲述pytorch版本
链接: link.
可以连接外网的也可以直接运行代码

#load
git clone https:///github.xom/yenchenlin/nerf-pytorch.git
cd nerf-pytorch

配置环境

在anaconda3的envs中配置好环境

#首先激活进入base
source activate
#建立nerf环境
conda create -n nerf python==3.7
#激活nerf环境
conda activate nerf
#配置其他
pip install -r requirements.txt #注意路径

下载数据集

(为了快速开始,这里只下载lego和fern数据集)

bash download_example_data.sh

运行

python run_nerf.py --config configs/lego.txt

你可能感兴趣的:(python,pytorch,计算机视觉)