├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── algorithm2e.sty ├── baposter.cls ├── example.png ├── images ├── fig_ablation.pdf ├── fig_baseline_nerf.pdf ├── fig_baseline_ps.pdf ├── fig_real_case.pdf ├── intro.pdf ├── method_v2.pdf ├── shadow.pdf ├── showcase │ ├── botanist_left.jpg │ ├── cat_right.jpg │ ├── girl_left.jpg │ └── setup.jpg ├── table_ablation.pdf ├── table_baseline_nerf.pdf └── table_baseline_ps.pdf ├── logo ├── HKU.eps ├── MIT-IBM.eps ├── NTU.png ├── cuhksz.png ├── link.pdf ├── nips.eps └── qr_code.png ├── poster_landscape.pdf └── poster_landscape.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/README.md -------------------------------------------------------------------------------- /algorithm2e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/algorithm2e.sty -------------------------------------------------------------------------------- /baposter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/baposter.cls -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/example.png -------------------------------------------------------------------------------- /images/fig_ablation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/fig_ablation.pdf -------------------------------------------------------------------------------- /images/fig_baseline_nerf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/fig_baseline_nerf.pdf -------------------------------------------------------------------------------- /images/fig_baseline_ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/fig_baseline_ps.pdf -------------------------------------------------------------------------------- /images/fig_real_case.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/fig_real_case.pdf -------------------------------------------------------------------------------- /images/intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/intro.pdf -------------------------------------------------------------------------------- /images/method_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/method_v2.pdf -------------------------------------------------------------------------------- /images/shadow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/shadow.pdf -------------------------------------------------------------------------------- /images/showcase/botanist_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/showcase/botanist_left.jpg -------------------------------------------------------------------------------- /images/showcase/cat_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/showcase/cat_right.jpg -------------------------------------------------------------------------------- /images/showcase/girl_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/showcase/girl_left.jpg -------------------------------------------------------------------------------- /images/showcase/setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/showcase/setup.jpg -------------------------------------------------------------------------------- /images/table_ablation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/table_ablation.pdf -------------------------------------------------------------------------------- /images/table_baseline_nerf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/table_baseline_nerf.pdf -------------------------------------------------------------------------------- /images/table_baseline_ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/images/table_baseline_ps.pdf -------------------------------------------------------------------------------- /logo/HKU.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/HKU.eps -------------------------------------------------------------------------------- /logo/MIT-IBM.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/MIT-IBM.eps -------------------------------------------------------------------------------- /logo/NTU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/NTU.png -------------------------------------------------------------------------------- /logo/cuhksz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/cuhksz.png -------------------------------------------------------------------------------- /logo/link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/link.pdf -------------------------------------------------------------------------------- /logo/nips.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/nips.eps -------------------------------------------------------------------------------- /logo/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/logo/qr_code.png -------------------------------------------------------------------------------- /poster_landscape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/poster_landscape.pdf -------------------------------------------------------------------------------- /poster_landscape.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywq/S3-NeRF_Poster_LaTex/HEAD/poster_landscape.tex --------------------------------------------------------------------------------