Error using Cmake for OpenCV 3.x on Windows with VS2016
Hi, I need OpenCV libraries in 32-bit (I need to use 32-bit dll files elsewhere). When I try to run the CMake gui with 32 bit VS chosen, I get the following 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: CUDA_cufft_LIBRARY (ADVANCED) and some additional lines.
How do I go about solving this? The solutions I saw online was to compile in 64-bit.. But i need opencv in 32bit.
afaik, there is nosupport for CUDA and IPP with 32 bits, so you'd have to disable those:
Thank you.. it works now