You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,22 +123,16 @@ Joshua Blake provided a Debug version binary: https://www.dropbox.com/s/madoye1a
123
123
* Download 64-bit Windows binaries from http://www.glfw.org/download.html
124
124
* Extract it as `depends/glfw` (rename `glfw-3.x.x.bin.WIN64` to glfw), or anywhere as long as the environment variable `GLFW_ROOT` is set to the installed path.
125
125
126
-
#### OpenCV
127
-
128
-
* Download the installer from http://sourceforge.net/projects/opencvlibrary/files/opencv-win
129
-
* Extract it anywhere (maybe also in `depends`)
130
-
131
126
#### OpenCL
132
127
133
128
* Intel GPU: Download `intel_sdk_for_ocl_applications_2014_x64_setup.msi` from http://www.softpedia.com/get/Programming/SDK-DDK/Intel-SDK-for-OpenCL-Applications.shtml (SDK official download is replaced by $$$ and no longer available) and install it. Then verify `INTELOCLSDKROOT` is set as an environment variable.
134
129
135
130
#### Build
136
131
137
-
You need to specify the location of OpenCV installation in `OpenCV_DIR`.
138
132
```
139
133
cd example\protonect
140
134
mkdir build && cd build
141
-
cmake .. -G "Visual Studio 12 2013 Win64" -DCMAKE_INSTALL_PREFIX=. -DOpenCV_DIR=%cd%\..\..\..\depends\opencv\build
135
+
cmake .. -G "Visual Studio 12 2013 Win64" -DCMAKE_INSTALL_PREFIX=.
142
136
cmake --build . --config Release --target install
143
137
```
144
138
@@ -150,12 +144,12 @@ Use your favorite package managers (brew, ports, etc.)
150
144
151
145
1.``cd`` into a directory where you want to keep libfreenect2 stuff in
152
146
1. Make sure these build tools are available: wget, git, cmake, pkg-config, automake, autoconf, libtool. Xcode may provide some of them. Install the rest via package managers.
0 commit comments