Stitcher::CreateDefault by GPU
Stitcher stitcher = Stitcher::createDefault(true);
but,
int nCuda = getCudaEnabledDeviceCount() ;
return 0
why return 0
?
Stitcher stitcher = Stitcher::createDefault(true);
but,
int nCuda = getCudaEnabledDeviceCount() ;
return 0
why return 0
?
Asked: 2015-07-02 22:35:04 -0600
Seen: 147 times
Last updated: Jul 03 '15
OpenCV for Windows (2.4.1): Cuda-enabled app won't load on non-nVidia systems
Can't compile .cu file when including opencv.hpp
[GPU] OpenCV 2.4.2 with Cuda support + Ubuntu 12.04 Laptop
OpenCV 2.4.2 and trunk: cmake doesn't show CUDA options
Bilinear sampling from a GpuMat
Problem with FarnebackOpticalFlow / DeviceInfo
BruteForceMatcher_GPU error on large set of descriptors
Pseudocode for custom GPU computation
Are you familiar with c++ (or C) programming? If this is in main, then 0 code is for no error; if it is in other function, maybe it is the same thing... Anyway, the
return
marks the end of the functionint nCuda = getCudaEnabledDeviceCount()
nCuda == 0
why?
Does this helps you? Or maybe this? The docs says it too