├── .gitignore ├── .vscode └── settings.json ├── README.md ├── doc ├── eq1.png ├── eq2.png └── results.png ├── example.py └── rot_6d.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *$py.class -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /doc/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/doc/eq1.png -------------------------------------------------------------------------------- /doc/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/doc/eq2.png -------------------------------------------------------------------------------- /doc/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/doc/results.png -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/example.py -------------------------------------------------------------------------------- /rot_6d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janus-Shiau/6d_rot_tensorflow/HEAD/rot_6d.py --------------------------------------------------------------------------------