Windows prebuilt binary doesn't seem to include CUDA related headers
I have a code that is using some functionality from cv::cuda and it is compiling and running fine on my Ubuntu computer where my OpenCV is compiled from source.
I am testing the exact same code on a Windows 10 using Visual Studio 2015, and I am using the official prebuilt binary version. The problem is I am getting errors like
Error C2039 'cvtColor': is not a member of 'cv::cuda'
Is there anyway to use functionalities from cv::cuda from the official prebuilt binary OpenCV on windows?