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
I have installed OpencvSharp 2.4 using Nuget Package manager in Microsoft Visual Studio 2013.
When i run this command
int count = Cv2Gpu.GetCudaEnabledDeviceCount();
it always returns 0. on the other side i tried with another library named cudafy but that one gives me the count 1. but Opencvsharp always returns me count 0.
Please help me out.
The text was updated successfully, but these errors were encountered:
Make the source code of opencv using Cmake while selecting "with Cuda" option.
Open the opencv solution then and just build opencv_core first and then opencv_gpu.
After building get the new dlls and replace them in opencvsharp package.
Now build your solution again and now it will copy the new dlls to the project build folder. Now it will detect the Cuda device.
I have installed OpencvSharp 2.4 using Nuget Package manager in Microsoft Visual Studio 2013.
When i run this command
int count = Cv2Gpu.GetCudaEnabledDeviceCount();
it always returns 0. on the other side i tried with another library named cudafy but that one gives me the count 1. but Opencvsharp always returns me count 0.
Please help me out.
The text was updated successfully, but these errors were encountered: