Home
last modified time | relevance | path

Searched refs:getCudaEnabledDeviceCount (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/videostab/src/
Doptical_flow.cpp69 CV_Assert(cuda::getCudaEnabledDeviceCount() > 0); in SparsePyrLkOptFlowEstimatorGpu()
117 CV_Assert(cuda::getCudaEnabledDeviceCount() > 0); in DensePyrLkOptFlowEstimatorGpu()
Dglobal_motion.cpp774 CV_Assert(cuda::getCudaEnabledDeviceCount() > 0); in KeypointBasedMotionEstimatorGpu()
/external/opencv3/samples/gpu/
Dmulti.cpp51 int num_devices = getCudaEnabledDeviceCount(); in main()
Ddriver_api_multi.cpp74 int num_devices = getCudaEnabledDeviceCount(); in main()
Ddriver_api_stereo_multi.cpp104 int num_devices = getCudaEnabledDeviceCount(); in main()
Dcascadeclassifier.cpp132 if (getCudaEnabledDeviceCount() == 0) in main()
Dcascadeclassifier_nvidia_api.cpp163 …ncvAssertPrintReturn(cv::cuda::getCudaEnabledDeviceCount() != 0, "No GPU found or the library is c… in main()
Dstereo_multi.cpp364 const int numDevices = getCudaEnabledDeviceCount(); in main()
/external/opencv3/modules/core/src/
Dcuda_stream.cpp363 int deviceCount = getCudaEnabledDeviceCount(); in getNullStream()
387 int deviceCount = getCudaEnabledDeviceCount(); in getMemoryPool()
648 const int deviceCount = getCudaEnabledDeviceCount(); in setBufferPoolConfig()
Dcuda_info.cpp48 int cv::cuda::getCudaEnabledDeviceCount() in getCudaEnabledDeviceCount() function in cv::cuda
319 int count = getCudaEnabledDeviceCount(); in DeviceProps()
960 int count = getCudaEnabledDeviceCount(); in printCudaDeviceInfo()
1046 int count = getCudaEnabledDeviceCount(); in printShortCudaDeviceInfo()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp388 if (try_cuda && cuda::getCudaEnabledDeviceCount() > 0) in main()
594 if (try_cuda && cuda::getCudaEnabledDeviceCount() > 0) in main()
677 if (try_cuda && cuda::getCudaEnabledDeviceCount() > 0) in main()
686 if (try_cuda && cuda::getCudaEnabledDeviceCount() > 0) in main()
/external/opencv3/modules/ts/src/
Dcuda_perf.cpp265 for (int i = 0; i < cv::cuda::getCudaEnabledDeviceCount(); i++) in printCudaInfo()
Dcuda_test.cpp159 if (i < 0 || i >= getCudaEnabledDeviceCount()) in load()
178 int deviceCount = getCudaEnabledDeviceCount(); in loadAll()
Dts_perf.cpp866 …param_cuda_device = std::max(0, std::min(cv::cuda::getCudaEnabledDeviceCount(), args.get<int>… in Init()
/external/opencv3/modules/core/doc/
Dcuda.markdown30 code, except for cuda::getCudaEnabledDeviceCount(). The latter function returns zero GPU count in
32 not require the CUDA Toolkit installed. Therefore, using the cuda::getCudaEnabledDeviceCount()
/external/opencv3/samples/gpu/performance/
Dperformance.cpp159 int num_devices = getCudaEnabledDeviceCount(); in main()
/external/opencv3/modules/stitching/src/
Dstitcher.cpp60 if (try_use_gpu && cuda::getCudaEnabledDeviceCount() > 0) in createDefault()
548 if (try_use_gpu && cuda::getCudaEnabledDeviceCount() > 0) in createStitcher()
Dmatchers.cpp561 if (try_use_gpu && getCudaEnabledDeviceCount() > 0) in BestOf2NearestMatcher()
Dblenders.cpp206 can_use_gpu_ = try_gpu && cuda::getCudaEnabledDeviceCount(); in MultiBandBlender()
/external/opencv3/modules/core/include/opencv2/core/
Dcuda.hpp549 CV_EXPORTS int getCudaEnabledDeviceCount();
Dcuda.inl.hpp568 CV_Assert( device_id >= 0 && device_id < getCudaEnabledDeviceCount() ); in DeviceInfo()