From c18f77fa137f89b50cc74125f0db0197c6cc3c55 Mon Sep 17 00:00:00 2001 From: Ethan Li Date: Sun, 28 Feb 2021 20:29:55 -0800 Subject: [PATCH] add some initial readme --- NeRF/tensorflow/README.md | 22 ++++++++++++++++++++++ NeRF/tensorflow/requirements.in | 1 + 2 files changed, 23 insertions(+) create mode 100644 NeRF/tensorflow/README.md create mode 100644 NeRF/tensorflow/requirements.in diff --git a/NeRF/tensorflow/README.md b/NeRF/tensorflow/README.md new file mode 100644 index 0000000..3699cf5 --- /dev/null +++ b/NeRF/tensorflow/README.md @@ -0,0 +1,22 @@ +# Neural Radiance Field (NeRF and D-NeRF) + +This directory host the source code to replicate two papers +- NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis, https://arxiv.org/abs/2003.08934 +- Deformable Neural Radiance Fields, https://arxiv.org/abs/2011.12948 + +## Setup + +1. Install python dependencies +``` +pip install -r requirements.in +``` + +2. Install COLMAP +Please visit: https://colmap.github.io/install.html + +## Custom Training Data + +To create custom training data, we will use a script `extract_frames.py` to run multiple steps in a pipeline, including blur detection and SfM. +``` +python extract_frames.py --video=./data/shiba.mp4 --output-dir=./data/shiba/ --threshold=15 +``` \ No newline at end of file diff --git a/NeRF/tensorflow/requirements.in b/NeRF/tensorflow/requirements.in new file mode 100644 index 0000000..b1e67fe --- /dev/null +++ b/NeRF/tensorflow/requirements.in @@ -0,0 +1 @@ +tensorflow==2.4.0 \ No newline at end of file