1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #13052 from elatkin:yl/gapi_sobel3x3_f32_v2

* GAPI: Sobel 3x3 with FP32 input

* GAPI: Sobel 3x3 with FP32 input, v2
This commit is contained in:
Evgeny Latkin
2018-11-06 23:08:50 +03:00
committed by Alexander Alekhin
parent 7a686a0c43
commit 000110e760
2 changed files with 31 additions and 0 deletions
@@ -817,6 +817,7 @@ GAPI_FLUID_KERNEL(GFluidSobel, cv::gapi::imgproc::GSobel, true)
UNARY_( float, uchar , run_sobel, dst, src, kx, ky, ksize, scale, delta);
UNARY_( float, ushort, run_sobel, dst, src, kx, ky, ksize, scale, delta);
UNARY_( float, short, run_sobel, dst, src, kx, ky, ksize, scale, delta);
UNARY_( float, float, run_sobel, dst, src, kx, ky, ksize, scale, delta);
CV_Error(cv::Error::StsBadArg, "unsupported combination of types");
}