├── .gitignore ├── .gitignore~ ├── 81-vive.rules ├── LICENSE ├── Makefile ├── README.md ├── include ├── posecalc │ └── opencv_pose_calc.h └── survive │ ├── dclapack.h │ ├── hidapi.h │ ├── jsmn.h │ ├── json_helpers.h │ ├── linmath.h │ ├── ootx_decoder.h │ ├── os_generic.h │ ├── poser.h │ ├── survive.h │ ├── survive_cal.h │ ├── survive_config.h │ ├── survive_internal.h │ ├── survive_types.h │ └── svd.h ├── scripts └── opencv_test_script.py └── src ├── ootx_decoder.c ├── opencv_pose_calc.cpp ├── poser_pollackpnp.c ├── redist ├── jsmn.c ├── json_helpers.c ├── linmath.c └── os_generic.c ├── runposer.c ├── survive.c ├── survive_cal.c ├── survive_config.c ├── survive_data.c ├── survive_driverman.c ├── survive_process.c └── survive_vive.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- 1 | lib/ 2 | *.o 3 | *.so 4 | -------------------------------------------------------------------------------- /81-vive.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/81-vive.rules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/README.md -------------------------------------------------------------------------------- /include/posecalc/opencv_pose_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/posecalc/opencv_pose_calc.h -------------------------------------------------------------------------------- /include/survive/dclapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/dclapack.h -------------------------------------------------------------------------------- /include/survive/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/hidapi.h -------------------------------------------------------------------------------- /include/survive/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/jsmn.h -------------------------------------------------------------------------------- /include/survive/json_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/json_helpers.h -------------------------------------------------------------------------------- /include/survive/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/linmath.h -------------------------------------------------------------------------------- /include/survive/ootx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/ootx_decoder.h -------------------------------------------------------------------------------- /include/survive/os_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/os_generic.h -------------------------------------------------------------------------------- /include/survive/poser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/poser.h -------------------------------------------------------------------------------- /include/survive/survive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/survive.h -------------------------------------------------------------------------------- /include/survive/survive_cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/survive_cal.h -------------------------------------------------------------------------------- /include/survive/survive_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/survive_config.h -------------------------------------------------------------------------------- /include/survive/survive_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/survive_internal.h -------------------------------------------------------------------------------- /include/survive/survive_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/survive_types.h -------------------------------------------------------------------------------- /include/survive/svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/include/survive/svd.h -------------------------------------------------------------------------------- /scripts/opencv_test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/scripts/opencv_test_script.py -------------------------------------------------------------------------------- /src/ootx_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/ootx_decoder.c -------------------------------------------------------------------------------- /src/opencv_pose_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/opencv_pose_calc.cpp -------------------------------------------------------------------------------- /src/poser_pollackpnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/poser_pollackpnp.c -------------------------------------------------------------------------------- /src/redist/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/redist/jsmn.c -------------------------------------------------------------------------------- /src/redist/json_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/redist/json_helpers.c -------------------------------------------------------------------------------- /src/redist/linmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/redist/linmath.c -------------------------------------------------------------------------------- /src/redist/os_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/redist/os_generic.c -------------------------------------------------------------------------------- /src/runposer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/runposer.c -------------------------------------------------------------------------------- /src/survive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive.c -------------------------------------------------------------------------------- /src/survive_cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_cal.c -------------------------------------------------------------------------------- /src/survive_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_config.c -------------------------------------------------------------------------------- /src/survive_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_data.c -------------------------------------------------------------------------------- /src/survive_driverman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_driverman.c -------------------------------------------------------------------------------- /src/survive_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_process.c -------------------------------------------------------------------------------- /src/survive_vive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollack11/vive_tracker_loc/HEAD/src/survive_vive.c --------------------------------------------------------------------------------