├── .gitignore ├── CMakeLists.txt ├── INSTALL.md ├── LICENSE ├── README.md ├── descriptor.json ├── include ├── BIQTContactDetector.h ├── ContactDetector.h └── pybind11_handler.h ├── requirements-cpu.txt ├── requirements.txt └── src ├── cxx ├── BIQTContactDetector.cpp ├── ContactDetector.cpp └── pybind11_handler.cpp └── python └── inference ├── __init__.py ├── detection_network.py ├── main.py ├── net.py ├── no_op_network.py └── pytorch_detector.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | config/models/ 3 | .vscode/ 4 | **/__pycache__ 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/README.md -------------------------------------------------------------------------------- /descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/descriptor.json -------------------------------------------------------------------------------- /include/BIQTContactDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/include/BIQTContactDetector.h -------------------------------------------------------------------------------- /include/ContactDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/include/ContactDetector.h -------------------------------------------------------------------------------- /include/pybind11_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/include/pybind11_handler.h -------------------------------------------------------------------------------- /requirements-cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/requirements-cpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/cxx/BIQTContactDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/cxx/BIQTContactDetector.cpp -------------------------------------------------------------------------------- /src/cxx/ContactDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/cxx/ContactDetector.cpp -------------------------------------------------------------------------------- /src/cxx/pybind11_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/cxx/pybind11_handler.cpp -------------------------------------------------------------------------------- /src/python/inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/inference/detection_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/python/inference/detection_network.py -------------------------------------------------------------------------------- /src/python/inference/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/python/inference/main.py -------------------------------------------------------------------------------- /src/python/inference/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/python/inference/net.py -------------------------------------------------------------------------------- /src/python/inference/no_op_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/python/inference/no_op_network.py -------------------------------------------------------------------------------- /src/python/inference/pytorch_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/biqt-contact-detector/HEAD/src/python/inference/pytorch_detector.py --------------------------------------------------------------------------------