├── Build_VS2013_Win32_Debug.bat ├── Build_VS2013_Win32_Release.bat ├── Build_VS2013_x64_Debug.bat ├── Build_VS2013_x64_Release.bat ├── Build_VS2015_Win32_Debug.bat ├── Build_VS2015_Win32_Release.bat ├── Build_VS2015_x64_Debug.bat ├── Build_VS2015_x64_Release.bat ├── CMakeLists.txt ├── Readme.md ├── conanfile.py ├── copyright.txt ├── external └── Irrlicht-math │ ├── LICENSE │ ├── README.md │ └── include │ ├── IrrCompileConfig.h │ ├── irrMath.h │ ├── irrTypes.h │ ├── irrlicht.h │ ├── matrix4.h │ ├── quaternion.h │ ├── vector2.h │ └── vector3.h └── src ├── AbstractInputProcessor.cpp ├── AbstractInputProcessor.h ├── CMakeLists.txt ├── DualQuat.h ├── IMURotationModel.cpp ├── IMURotationModel.h ├── InternalVariables.cpp ├── InternalVariables.h ├── LHTrackingAlgorithm.cpp ├── LHTrackingAlgorithm.h ├── LightHouseData.h ├── LighthouseInputProcessor.cpp ├── LighthouseInputProcessor.h ├── MoveDetector.cpp ├── MoveDetector.h ├── PresampleDataLoader.cpp ├── PresampleDataLoader.h ├── RingBufferDataLoader.cpp ├── RingBufferDataLoader.h ├── SafeFlag.hpp ├── SensorDataInterpretor.cpp ├── SensorDataInterpretor.h ├── TO_HMD.cpp ├── TO_HMD.h ├── TimeManager.cpp ├── TimeManager.h ├── TrackObject.cpp ├── TrackObject.h ├── TrackObjectManager.cpp ├── TrackObjectManager.h ├── TrackingDataLoader.cpp ├── TrackingDataLoader.h ├── internal.h ├── resource.h ├── ringbuffer.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── types.h ├── version.aps └── version.rc /Build_VS2013_Win32_Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2013_Win32_Debug.bat -------------------------------------------------------------------------------- /Build_VS2013_Win32_Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2013_Win32_Release.bat -------------------------------------------------------------------------------- /Build_VS2013_x64_Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2013_x64_Debug.bat -------------------------------------------------------------------------------- /Build_VS2013_x64_Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2013_x64_Release.bat -------------------------------------------------------------------------------- /Build_VS2015_Win32_Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2015_Win32_Debug.bat -------------------------------------------------------------------------------- /Build_VS2015_Win32_Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2015_Win32_Release.bat -------------------------------------------------------------------------------- /Build_VS2015_x64_Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2015_x64_Debug.bat -------------------------------------------------------------------------------- /Build_VS2015_x64_Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Build_VS2015_x64_Release.bat -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/Readme.md -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/conanfile.py -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/copyright.txt -------------------------------------------------------------------------------- /external/Irrlicht-math/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/LICENSE -------------------------------------------------------------------------------- /external/Irrlicht-math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/README.md -------------------------------------------------------------------------------- /external/Irrlicht-math/include/IrrCompileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/IrrCompileConfig.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/irrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/irrMath.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/irrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/irrTypes.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/irrlicht.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/matrix4.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/quaternion.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/vector2.h -------------------------------------------------------------------------------- /external/Irrlicht-math/include/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/external/Irrlicht-math/include/vector3.h -------------------------------------------------------------------------------- /src/AbstractInputProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/AbstractInputProcessor.cpp -------------------------------------------------------------------------------- /src/AbstractInputProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/AbstractInputProcessor.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/DualQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/DualQuat.h -------------------------------------------------------------------------------- /src/IMURotationModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/IMURotationModel.cpp -------------------------------------------------------------------------------- /src/IMURotationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/IMURotationModel.h -------------------------------------------------------------------------------- /src/InternalVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/InternalVariables.cpp -------------------------------------------------------------------------------- /src/InternalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/InternalVariables.h -------------------------------------------------------------------------------- /src/LHTrackingAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/LHTrackingAlgorithm.cpp -------------------------------------------------------------------------------- /src/LHTrackingAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/LHTrackingAlgorithm.h -------------------------------------------------------------------------------- /src/LightHouseData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/LightHouseData.h -------------------------------------------------------------------------------- /src/LighthouseInputProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/LighthouseInputProcessor.cpp -------------------------------------------------------------------------------- /src/LighthouseInputProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/LighthouseInputProcessor.h -------------------------------------------------------------------------------- /src/MoveDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/MoveDetector.cpp -------------------------------------------------------------------------------- /src/MoveDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/MoveDetector.h -------------------------------------------------------------------------------- /src/PresampleDataLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/PresampleDataLoader.cpp -------------------------------------------------------------------------------- /src/PresampleDataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/PresampleDataLoader.h -------------------------------------------------------------------------------- /src/RingBufferDataLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/RingBufferDataLoader.cpp -------------------------------------------------------------------------------- /src/RingBufferDataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/RingBufferDataLoader.h -------------------------------------------------------------------------------- /src/SafeFlag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/SafeFlag.hpp -------------------------------------------------------------------------------- /src/SensorDataInterpretor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/SensorDataInterpretor.cpp -------------------------------------------------------------------------------- /src/SensorDataInterpretor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/SensorDataInterpretor.h -------------------------------------------------------------------------------- /src/TO_HMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TO_HMD.cpp -------------------------------------------------------------------------------- /src/TO_HMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TO_HMD.h -------------------------------------------------------------------------------- /src/TimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TimeManager.cpp -------------------------------------------------------------------------------- /src/TimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TimeManager.h -------------------------------------------------------------------------------- /src/TrackObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackObject.cpp -------------------------------------------------------------------------------- /src/TrackObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackObject.h -------------------------------------------------------------------------------- /src/TrackObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackObjectManager.cpp -------------------------------------------------------------------------------- /src/TrackObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackObjectManager.h -------------------------------------------------------------------------------- /src/TrackingDataLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackingDataLoader.cpp -------------------------------------------------------------------------------- /src/TrackingDataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/TrackingDataLoader.h -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/ringbuffer.h -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/stdafx.cpp -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/targetver.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/types.h -------------------------------------------------------------------------------- /src/version.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/version.aps -------------------------------------------------------------------------------- /src/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypereal-opensource/AlgorithmSDK/HEAD/src/version.rc --------------------------------------------------------------------------------