Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
AgainstEntropy committed Mar 23, 2023
1 parent 5bdf965 commit 01401bf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.idea
.ipynb_checkpoints
__pycache__


/dataset
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

[![Project Website](https://img.shields.io/badge/Project-Website-orange)](https://againstentropy.github.io/NLOS-Track/)
[![arXiv](https://img.shields.io/badge/arXiv-2303.11791-b31b1b.svg)](https://arxiv.org/abs/2303.11791)
[![Dataset Download](https://img.shields.io/badge/Dataset-Download-blue)](https://www.kaggle.com/datasets/againstentropy1/nlos-track)


Official codes of CVPR 2023 [Paper](https://arxiv.org/abs/2303.11791) | _Propagate And Calibrate: Real-time Passive Non-line-of-sight Tracking_

## Environment
## Prepreation

### Environment

Create a new environment and install dependencies with `requirement.txt`:

Expand All @@ -17,7 +21,7 @@ conda activate NLOS_Tracking
conda install --file requirements.txt
```

## Data Prepreation
### Data

The NLOS-Track dataset can be downloaded from [kaggle](https://www.kaggle.com/datasets/againstentropy1/nlos-track).

Expand Down Expand Up @@ -51,13 +55,13 @@ project_root
...
```

### Data Loading and Visualization
#### Data Loading and Visualization

Follow the code blocks in `data_playground.ipynb` to load and visualize the dataset.

**Coming soon!**
## Usage

## Train
### Train

**Before training, fill the missing items in configuration files.**

Expand All @@ -73,7 +77,7 @@ or directly use `default.yaml` by default:
python train.py --model_name=PAC-Net --pretrained -b 64 -lr_b 2.5e-4 --gpu_ids=0,1 --port=8888
```

## Test
### Test

Follow the code blocks in `test.ipynb` to test a trained model.

Expand Down
8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<head>
<meta charset="utf-8">
<meta name="description"
content="Deformable Neural Radiance Fields creates free-viewpoint portraits (nerfies) from casually captured videos.">
<meta name="keywords" content="Nerfies, D-NeRF, NeRF">
content="PAC-Net reconstructs the trajectory of a person out of sight in real time.">
<meta name="keywords" content="NLOS, Tracking">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Propagate And Calibrate: Real-time Passive Non-line-of-sight Tracking</title>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PYVRSFMDRL"></script>
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-PYVRSFMDRL"></script>
<script>
window.dataLayer = window.dataLayer || [];
Expand All @@ -20,7 +20,7 @@
gtag('js', new Date());
gtag('config', 'G-PYVRSFMDRL');
</script>
</script> -->

<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet">
Expand Down

0 comments on commit 01401bf

Please sign in to comment.