I am trying to run Nvidia Optical Flow SDK on Linux, I want to implement it on video
System:
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 435.21 Driver Version: 435.21 CUDA Version: 10.0 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce RTX 208... Off | 00000000:0A:00.0 Off | N/A |
| 41% 33C P8 21W / 260W | 1MiB / 11019MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 1 GeForce RTX 208... Off | 00000000:41:00.0 Off | N/A |
| 41% 36C P8 20W / 260W | 26MiB / 11016MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
As stated in README file,
Inside /Optical_Flow_SDK_1.1.10/Samples/, I created build folder, and ran
cmake -DCMAKE_BUILD_TYPE=Release ..
Error:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
/docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppOFCuda/FREEIMAGE_INC_DIR
used as include directory in directory /docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppOFCuda
/docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppStereoDisparityCuda/FREEIMAGE_INC_DIR
used as include directory in directory /docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppStereoDisparityCuda
FREEIMAGE_LIB
linked by target "AppOFCuda" in directory /docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppOFCuda
linked by target "AppStereoDisparityCuda" in directory /docker/Optical_flow/Optical_Flow_SDK_1.1.10/Samples/AppStereoDisparityCuda
This was done under nvidia/cuda docker with cuda 10.1
On doing it on standlone machine with cuda 10.0
It gives same error.
Not able to figure out why it is.
Please help in running SDK or provide the steps to build and run the samples