- Windows10 x64
- Visual Studio Community 2015
- Oculus Rift CV1
- Ovrvision Pro
- Intel Realsense SR300 (new version)
- openFrameworks v0.9.8
- ofxGui
download and put them into <$OFROOT>
- Download and unzip OvrvisionPro SDK for Windows anywhere you want (for example
C:\libraries\ovrvisionprosdk_windows\) - Install Oculus Runtime for Windows
- Install Intel® RealSense™ Camera SR300 Firmware
- Install Realsense SDK 2016 R2 for windows 2016 R2
- Download and build Yolo v2 for Windows (if you want to modify yolo)
- Generate openFrameworks project with addons mentioned above
Project Property > Configuration Properties > C/C++ > General > Additional Include Directories
- The pass to
yolo_cpp_dll.hpp(I guess it isyolo_v2_class.hpp?) - The pass to
ovrvision_pro.h(which should be in your ovrvision sdk) - the include path of realsense (for me, its like
C:\Intel\RSSDK\include\)
Project Property > Configuration Properties > Linker > General > Additional Library Directories
.\dll(which stores yolo's dll and lib)- Realsense lib directory (like
C:\Program Files (x86)\Intel\RSSDK\lib\x64//please adjust to your own path) - Ovrvision Pro SDK bin/x64 directory (for example
C:\libraries\ovrvisionprosdk_windows\bin\x64) - ofxOculusRiftCV1 libraries
$(OF_ROOT)\addons\ofxOculusRiftCV1\libs\LibOVR\libs\Windows\x64\Release\VS2015$(OF_ROOT)\addons\ofxOculusRiftCV1\libs\LibOVRKernel\libs\Windows\x64\Release\VS2015
Project Property > Configuration Properties > Linker > Input > Additional Dependencies
yolo_cpp_dll.libLibOVR.liblibOVRKernel.libovrvision64.lib
$(OF_ROOT)\addons\ofxOculusRiftCV1\libs\LibOVRKernel\src\Tracing$(OF_ROOT)\addons\ofxOculusRiftCV1\libs\LibOVRKernel\src\Util
you should replace some addon files with files in the Modified floder (to get some modified function work)
Build > Build Solution (Ctrl+Shift+B)
ovrvison.dllOpenAl32.dllyolo_cpp_dll.dll
- under construction...