├── .gitignore ├── LICENSE ├── README.md ├── README_zh-CN.md ├── docs ├── Application_template.docx └── annotation.md └── figures ├── I.png ├── L.png ├── T.png ├── U.png ├── logo.png ├── sensor_setup.png ├── slot1.png ├── slot2.png ├── slot3.png └── slot4.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /docs/Application_template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/docs/Application_template.docx -------------------------------------------------------------------------------- /docs/annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/docs/annotation.md -------------------------------------------------------------------------------- /figures/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/I.png -------------------------------------------------------------------------------- /figures/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/L.png -------------------------------------------------------------------------------- /figures/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/T.png -------------------------------------------------------------------------------- /figures/U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/U.png -------------------------------------------------------------------------------- /figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/logo.png -------------------------------------------------------------------------------- /figures/sensor_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/sensor_setup.png -------------------------------------------------------------------------------- /figures/slot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/slot1.png -------------------------------------------------------------------------------- /figures/slot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/slot2.png -------------------------------------------------------------------------------- /figures/slot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/slot3.png -------------------------------------------------------------------------------- /figures/slot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BodenAI/BodenAVMDataset/HEAD/figures/slot4.png --------------------------------------------------------------------------------