├── .gitignore ├── LICENSE.txt ├── README.md ├── checkpoints └── .gitkeep ├── code ├── gen_dataset.py ├── neural_materials.py ├── trainable_antenna_pattern.py ├── trainable_materials.py ├── trainable_scattering_pattern.py └── utils.py ├── data ├── coordinates.csv ├── reftx-offsets-dichasus-dc01.json ├── spec.json ├── synthetic_positions.npy ├── tfrecords │ └── .gitkeep └── traced_paths │ └── .gitkeep ├── notebooks ├── CDFs.ipynb ├── CIRs.ipynb ├── Heat_Maps.ipynb ├── ITU_Materials.ipynb ├── Learned_Materials.ipynb ├── Neural_Materials.ipynb └── Synthetic_Data.ipynb ├── results ├── measurements │ ├── cir-1.pdf │ ├── cir-2.pdf │ ├── cir-3.pdf │ ├── cir-4.pdf │ ├── ds.pdf │ ├── ds_rae.pdf │ ├── path_loss_rx1.pdf │ ├── path_loss_rx2.pdf │ ├── power.pdf │ └── power_ale.pdf └── synthetic │ ├── antenna_pattern_h.pdf │ ├── antenna_pattern_v.pdf │ ├── conductivity.pdf │ ├── relative_permittivity.pdf │ ├── scattering_coefficient.pdf │ ├── scattering_pattern.pdf │ └── xpd_coefficient.pdf └── scenes └── inue_simple ├── inue_simple.blend ├── inue_simple.xml └── meshes ├── ceiling.ply ├── floor.ply └── walls.ply /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/gen_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/gen_dataset.py -------------------------------------------------------------------------------- /code/neural_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/neural_materials.py -------------------------------------------------------------------------------- /code/trainable_antenna_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/trainable_antenna_pattern.py -------------------------------------------------------------------------------- /code/trainable_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/trainable_materials.py -------------------------------------------------------------------------------- /code/trainable_scattering_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/trainable_scattering_pattern.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/code/utils.py -------------------------------------------------------------------------------- /data/coordinates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/data/coordinates.csv -------------------------------------------------------------------------------- /data/reftx-offsets-dichasus-dc01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/data/reftx-offsets-dichasus-dc01.json -------------------------------------------------------------------------------- /data/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/data/spec.json -------------------------------------------------------------------------------- /data/synthetic_positions.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/data/synthetic_positions.npy -------------------------------------------------------------------------------- /data/tfrecords/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/traced_paths/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/CDFs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/CDFs.ipynb -------------------------------------------------------------------------------- /notebooks/CIRs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/CIRs.ipynb -------------------------------------------------------------------------------- /notebooks/Heat_Maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/Heat_Maps.ipynb -------------------------------------------------------------------------------- /notebooks/ITU_Materials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/ITU_Materials.ipynb -------------------------------------------------------------------------------- /notebooks/Learned_Materials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/Learned_Materials.ipynb -------------------------------------------------------------------------------- /notebooks/Neural_Materials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/Neural_Materials.ipynb -------------------------------------------------------------------------------- /notebooks/Synthetic_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/notebooks/Synthetic_Data.ipynb -------------------------------------------------------------------------------- /results/measurements/cir-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/cir-1.pdf -------------------------------------------------------------------------------- /results/measurements/cir-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/cir-2.pdf -------------------------------------------------------------------------------- /results/measurements/cir-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/cir-3.pdf -------------------------------------------------------------------------------- /results/measurements/cir-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/cir-4.pdf -------------------------------------------------------------------------------- /results/measurements/ds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/ds.pdf -------------------------------------------------------------------------------- /results/measurements/ds_rae.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/ds_rae.pdf -------------------------------------------------------------------------------- /results/measurements/path_loss_rx1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/path_loss_rx1.pdf -------------------------------------------------------------------------------- /results/measurements/path_loss_rx2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/path_loss_rx2.pdf -------------------------------------------------------------------------------- /results/measurements/power.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/power.pdf -------------------------------------------------------------------------------- /results/measurements/power_ale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/measurements/power_ale.pdf -------------------------------------------------------------------------------- /results/synthetic/antenna_pattern_h.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/antenna_pattern_h.pdf -------------------------------------------------------------------------------- /results/synthetic/antenna_pattern_v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/antenna_pattern_v.pdf -------------------------------------------------------------------------------- /results/synthetic/conductivity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/conductivity.pdf -------------------------------------------------------------------------------- /results/synthetic/relative_permittivity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/relative_permittivity.pdf -------------------------------------------------------------------------------- /results/synthetic/scattering_coefficient.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/scattering_coefficient.pdf -------------------------------------------------------------------------------- /results/synthetic/scattering_pattern.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/scattering_pattern.pdf -------------------------------------------------------------------------------- /results/synthetic/xpd_coefficient.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/results/synthetic/xpd_coefficient.pdf -------------------------------------------------------------------------------- /scenes/inue_simple/inue_simple.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/scenes/inue_simple/inue_simple.blend -------------------------------------------------------------------------------- /scenes/inue_simple/inue_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/scenes/inue_simple/inue_simple.xml -------------------------------------------------------------------------------- /scenes/inue_simple/meshes/ceiling.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/scenes/inue_simple/meshes/ceiling.ply -------------------------------------------------------------------------------- /scenes/inue_simple/meshes/floor.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/scenes/inue_simple/meshes/floor.ply -------------------------------------------------------------------------------- /scenes/inue_simple/meshes/walls.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/diff-rt-calibration/HEAD/scenes/inue_simple/meshes/walls.ply --------------------------------------------------------------------------------