Update cuda api

* cv::cuda::CascadeClassifier Class
	* cv::cuda::HOG Class
	* cv::cuda::CannyEdgeDetector
This commit is contained in:
Daniel
2020-02-07 10:43:16 +03:00
committed by Ron Evans
parent b88d1da6ba
commit d1f1c43d06
12 changed files with 828 additions and 1 deletions

View File

@@ -34,4 +34,8 @@ void PrintShortCudaDeviceInfo(int device){
int GetCudaEnabledDeviceCount(){
return cv::cuda::getCudaEnabledDeviceCount();
}
}
void GpuMat_ConvertTo(GpuMat m, GpuMat dst, int type) {
m->convertTo(*dst, type);
}