├── .gitignore ├── LICENSE ├── README.md ├── data.py ├── log └── .gitkeep ├── net_builder.py └── run_posenet.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.ckpt* 3 | checkpoint 4 | log 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurely/deep-camera-relocalization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurely/deep-camera-relocalization/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurely/deep-camera-relocalization/HEAD/data.py -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurely/deep-camera-relocalization/HEAD/net_builder.py -------------------------------------------------------------------------------- /run_posenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurely/deep-camera-relocalization/HEAD/run_posenet.py --------------------------------------------------------------------------------