├── .gitignore ├── LICENSE ├── README.md ├── compute_metric.py ├── configs ├── __init__.py ├── actorsnerf │ ├── AIST_mocap │ │ ├── AIST_category_level-pretrain.yaml │ │ ├── d16 │ │ │ ├── AIST_d16-100_shot-skip3.yaml │ │ │ ├── AIST_d16-10_shot-skip30.yaml │ │ │ ├── AIST_d16-300_shot-skip1.yaml │ │ │ ├── AIST_d16-30_shot-skip10.yaml │ │ │ └── AIST_d16-5_shot-skip60.yaml │ │ ├── d17 │ │ │ ├── AIST_d17-100_shot-skip3.yaml │ │ │ ├── AIST_d17-10_shot-skip30.yaml │ │ │ ├── AIST_d17-300_shot-skip1.yaml │ │ │ ├── AIST_d17-30_shot-skip10.yaml │ │ │ └── AIST_d17-5_shot-skip60.yaml │ │ ├── d18 │ │ │ ├── AIST_d18-100_shot-skip3.yaml │ │ │ ├── AIST_d18-10_shot-skip30.yaml │ │ │ ├── AIST_d18-300_shot-skip1.yaml │ │ │ ├── AIST_d18-30_shot-skip10.yaml │ │ │ └── AIST_d18-5_shot-skip60.yaml │ │ ├── d19 │ │ │ ├── AIST_d19-100_shot-skip3.yaml │ │ │ ├── AIST_d19-10_shot-skip30.yaml │ │ │ ├── AIST_d19-300_shot-skip1.yaml │ │ │ ├── AIST_d19-30_shot-skip10.yaml │ │ │ └── AIST_d19-5_shot-skip60.yaml │ │ └── d20 │ │ │ ├── AIST_d20-100_shot-skip3.yaml │ │ │ ├── AIST_d20-10_shot-skip30.yaml │ │ │ ├── AIST_d20-300_shot-skip1.yaml │ │ │ ├── AIST_d20-30_shot-skip10.yaml │ │ │ └── AIST_d20-5_shot-skip60.yaml │ └── zju_mocap │ │ ├── 387 │ │ ├── zju_387-100_shot-skip3.yaml │ │ ├── zju_387-10_shot-skip30.yaml │ │ ├── zju_387-300_shot-skip1.yaml │ │ ├── zju_387-30_shot-skip10.yaml │ │ └── zju_387-5_shot-skip60.yaml │ │ ├── 393 │ │ ├── zju_393-100_shot-skip3.yaml │ │ ├── zju_393-10_shot-skip30.yaml │ │ ├── zju_393-300_shot-skip1.yaml │ │ ├── zju_393-30_shot-skip10.yaml │ │ └── zju_393-5_shot-skip60.yaml │ │ ├── 394 │ │ ├── zju_394-100_shot-skip3.yaml │ │ ├── zju_394-10_shot-skip30.yaml │ │ ├── zju_394-300_shot-skip1.yaml │ │ ├── zju_394-30_shot-skip10.yaml │ │ └── zju_394-5_shot-skip60.yaml │ │ └── zju_category_level-pretrain.yaml ├── config.py └── default.yaml ├── core ├── __init__.py ├── component_factory.py ├── data │ ├── __init__.py │ ├── actorsnerf │ │ ├── eval.py │ │ ├── finetune_100frame.py │ │ ├── finetune_300frame.py │ │ └── train_category_level.py │ ├── create_dataset.py │ └── dataset_args.py ├── evaluator.py ├── nets │ ├── __init__.py │ ├── actorsnerf │ │ ├── component_factory.py │ │ ├── deformation_network │ │ │ └── deformation_network.py │ │ ├── embedders │ │ │ ├── fourier.py │ │ │ └── hannw_fourier.py │ │ ├── encoder │ │ │ ├── __init__.py │ │ │ ├── encoder.py │ │ │ └── resnet_nhp.py │ │ ├── mweight_vol_decoders │ │ │ └── category_level_mweight_volume.py │ │ ├── network.py │ │ ├── rendering_network │ │ │ └── rendering_network.py │ │ └── sparse_conv │ │ │ └── sparse_conv_net.py │ └── create_network.py ├── train │ ├── __init__.py │ ├── create_lr_updater.py │ ├── create_optimizer.py │ ├── create_trainer.py │ ├── optimizers │ │ └── optimizer.py │ └── trainers │ │ ├── lr_updaters │ │ └── exp_decay.py │ │ └── trainer.py └── utils │ ├── __init__.py │ ├── body_util.py │ ├── camera_util.py │ ├── file_util.py │ ├── image_util.py │ ├── log_util.py │ ├── network_util.py │ └── train_util.py ├── eval.py ├── figs └── demo.gif ├── requirements.txt ├── third_parties ├── lpips │ ├── LICENSE │ ├── __init__.py │ ├── lpips.py │ ├── pretrained_networks.py │ └── weights │ │ └── v0.1 │ │ └── vgg.pth └── yacs │ ├── LICENSE │ ├── NOTICE │ ├── __init__.py │ └── yacs.py ├── tools ├── prepare_AIST_mocap │ ├── prepare_AIST_zju_format.py │ └── prepare_dataset.py ├── prepare_zju_mocap │ ├── 313.yaml │ ├── 315.yaml │ ├── 377.yaml │ ├── 386.yaml │ ├── 387.yaml │ ├── 390.yaml │ ├── 392.yaml │ ├── 393.yaml │ ├── 394.yaml │ ├── 396.yaml │ └── prepare_dataset.py └── visualize_dataset.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/README.md -------------------------------------------------------------------------------- /compute_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/compute_metric.py -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import cfg, args 2 | -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/AIST_category_level-pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/AIST_category_level-pretrain.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d16/AIST_d16-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d16/AIST_d16-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d16/AIST_d16-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d16/AIST_d16-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d16/AIST_d16-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d16/AIST_d16-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d16/AIST_d16-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d16/AIST_d16-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d16/AIST_d16-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d16/AIST_d16-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d17/AIST_d17-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d17/AIST_d17-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d17/AIST_d17-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d17/AIST_d17-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d17/AIST_d17-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d17/AIST_d17-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d17/AIST_d17-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d17/AIST_d17-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d17/AIST_d17-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d17/AIST_d17-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d18/AIST_d18-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d18/AIST_d18-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d18/AIST_d18-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d18/AIST_d18-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d18/AIST_d18-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d18/AIST_d18-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d18/AIST_d18-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d18/AIST_d18-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d18/AIST_d18-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d18/AIST_d18-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d19/AIST_d19-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d19/AIST_d19-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d19/AIST_d19-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d19/AIST_d19-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d19/AIST_d19-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d19/AIST_d19-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d19/AIST_d19-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d19/AIST_d19-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d19/AIST_d19-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d19/AIST_d19-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d20/AIST_d20-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d20/AIST_d20-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d20/AIST_d20-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d20/AIST_d20-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d20/AIST_d20-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d20/AIST_d20-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d20/AIST_d20-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d20/AIST_d20-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/AIST_mocap/d20/AIST_d20-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/AIST_mocap/d20/AIST_d20-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/387/zju_387-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/387/zju_387-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/387/zju_387-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/387/zju_387-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/387/zju_387-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/387/zju_387-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/387/zju_387-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/387/zju_387-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/387/zju_387-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/387/zju_387-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/393/zju_393-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/393/zju_393-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/393/zju_393-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/393/zju_393-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/393/zju_393-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/393/zju_393-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/393/zju_393-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/393/zju_393-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/393/zju_393-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/393/zju_393-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/394/zju_394-100_shot-skip3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/394/zju_394-100_shot-skip3.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/394/zju_394-10_shot-skip30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/394/zju_394-10_shot-skip30.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/394/zju_394-300_shot-skip1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/394/zju_394-300_shot-skip1.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/394/zju_394-30_shot-skip10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/394/zju_394-30_shot-skip10.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/394/zju_394-5_shot-skip60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/394/zju_394-5_shot-skip60.yaml -------------------------------------------------------------------------------- /configs/actorsnerf/zju_mocap/zju_category_level-pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/actorsnerf/zju_mocap/zju_category_level-pretrain.yaml -------------------------------------------------------------------------------- /configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/config.py -------------------------------------------------------------------------------- /configs/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/configs/default.yaml -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/component_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/component_factory.py -------------------------------------------------------------------------------- /core/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/__init__.py -------------------------------------------------------------------------------- /core/data/actorsnerf/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/actorsnerf/eval.py -------------------------------------------------------------------------------- /core/data/actorsnerf/finetune_100frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/actorsnerf/finetune_100frame.py -------------------------------------------------------------------------------- /core/data/actorsnerf/finetune_300frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/actorsnerf/finetune_300frame.py -------------------------------------------------------------------------------- /core/data/actorsnerf/train_category_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/actorsnerf/train_category_level.py -------------------------------------------------------------------------------- /core/data/create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/create_dataset.py -------------------------------------------------------------------------------- /core/data/dataset_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/data/dataset_args.py -------------------------------------------------------------------------------- /core/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/evaluator.py -------------------------------------------------------------------------------- /core/nets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/__init__.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/component_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/component_factory.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/deformation_network/deformation_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/deformation_network/deformation_network.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/embedders/fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/embedders/fourier.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/embedders/hannw_fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/embedders/hannw_fourier.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/nets/actorsnerf/encoder/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/encoder/encoder.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/encoder/resnet_nhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/encoder/resnet_nhp.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/mweight_vol_decoders/category_level_mweight_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/mweight_vol_decoders/category_level_mweight_volume.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/network.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/rendering_network/rendering_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/rendering_network/rendering_network.py -------------------------------------------------------------------------------- /core/nets/actorsnerf/sparse_conv/sparse_conv_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/actorsnerf/sparse_conv/sparse_conv_net.py -------------------------------------------------------------------------------- /core/nets/create_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/nets/create_network.py -------------------------------------------------------------------------------- /core/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/__init__.py -------------------------------------------------------------------------------- /core/train/create_lr_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/create_lr_updater.py -------------------------------------------------------------------------------- /core/train/create_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/create_optimizer.py -------------------------------------------------------------------------------- /core/train/create_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/create_trainer.py -------------------------------------------------------------------------------- /core/train/optimizers/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/optimizers/optimizer.py -------------------------------------------------------------------------------- /core/train/trainers/lr_updaters/exp_decay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/trainers/lr_updaters/exp_decay.py -------------------------------------------------------------------------------- /core/train/trainers/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/train/trainers/trainer.py -------------------------------------------------------------------------------- /core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/utils/body_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/body_util.py -------------------------------------------------------------------------------- /core/utils/camera_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/camera_util.py -------------------------------------------------------------------------------- /core/utils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/file_util.py -------------------------------------------------------------------------------- /core/utils/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/image_util.py -------------------------------------------------------------------------------- /core/utils/log_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/log_util.py -------------------------------------------------------------------------------- /core/utils/network_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/network_util.py -------------------------------------------------------------------------------- /core/utils/train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/core/utils/train_util.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/eval.py -------------------------------------------------------------------------------- /figs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/figs/demo.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/requirements.txt -------------------------------------------------------------------------------- /third_parties/lpips/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/lpips/LICENSE -------------------------------------------------------------------------------- /third_parties/lpips/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/lpips/__init__.py -------------------------------------------------------------------------------- /third_parties/lpips/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/lpips/lpips.py -------------------------------------------------------------------------------- /third_parties/lpips/pretrained_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/lpips/pretrained_networks.py -------------------------------------------------------------------------------- /third_parties/lpips/weights/v0.1/vgg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/lpips/weights/v0.1/vgg.pth -------------------------------------------------------------------------------- /third_parties/yacs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/yacs/LICENSE -------------------------------------------------------------------------------- /third_parties/yacs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/yacs/NOTICE -------------------------------------------------------------------------------- /third_parties/yacs/__init__.py: -------------------------------------------------------------------------------- 1 | from .yacs import CfgNode -------------------------------------------------------------------------------- /third_parties/yacs/yacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/third_parties/yacs/yacs.py -------------------------------------------------------------------------------- /tools/prepare_AIST_mocap/prepare_AIST_zju_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_AIST_mocap/prepare_AIST_zju_format.py -------------------------------------------------------------------------------- /tools/prepare_AIST_mocap/prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_AIST_mocap/prepare_dataset.py -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/313.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/315.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/315.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/377.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/377.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/386.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/386.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/387.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/387.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/390.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/390.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/392.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/392.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/393.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/393.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/394.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/394.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/396.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/396.yaml -------------------------------------------------------------------------------- /tools/prepare_zju_mocap/prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/prepare_zju_mocap/prepare_dataset.py -------------------------------------------------------------------------------- /tools/visualize_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/tools/visualize_dataset.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitengMu/ActorsNeRF/HEAD/train.py --------------------------------------------------------------------------------