Skip to content

Commit

Permalink
add some initial readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjialisc committed Mar 1, 2021
1 parent ad6ef00 commit 6c69bc7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions NeRF/tensorflow/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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

3. Install ffmpeg. Please visit: https://ffmpeg.org/download.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
```
1 change: 1 addition & 0 deletions NeRF/tensorflow/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tensorflow==2.4.0

0 comments on commit 6c69bc7

Please sign in to comment.