├── .gitignore ├── LICENSE ├── README.md ├── evaluation.py ├── evaluation ├── __init__.py ├── evalute_ate.py ├── loading_data.py └── utils.py ├── install.sh ├── show_examples.py └── visualization └── open3d_gui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/README.md -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/evaluation.py -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/evalute_ate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/evaluation/evalute_ate.py -------------------------------------------------------------------------------- /evaluation/loading_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/evaluation/loading_data.py -------------------------------------------------------------------------------- /evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/evaluation/utils.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/install.sh -------------------------------------------------------------------------------- /show_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/show_examples.py -------------------------------------------------------------------------------- /visualization/open3d_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/DynaCam/HEAD/visualization/open3d_gui.py --------------------------------------------------------------------------------