1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

cv::multiply

This commit is contained in:
Ilya Lavrenov
2014-04-14 18:42:21 +04:00
parent 9cc80a68db
commit fe644ede19
6 changed files with 41 additions and 74 deletions
+1 -1
View File
@@ -389,7 +389,7 @@ static bool ocl_cornerMinEigenValVecs(InputArray _src, OutputArray _dst, int blo
scale = 1.0 / scale;
UMat Dx, Dy;
if (!extractCovData(_src, Dx, Dy, depth, (double)scale, aperture_size, borderType))
if (!extractCovData(_src, Dx, Dy, depth, (float)scale, aperture_size, borderType))
return false;
ocl::Kernel cornelKernel("corner", ocl::imgproc::corner_oclsrc,