Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Neural Radiance Field #20

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NeRF/tensorflow/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
data
temp
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
```
Loading