Home
last modified time | relevance | path

Searched refs:Scharr (Results 1 – 17 of 17) sorted by relevance

/external/opencv3/modules/cudev/test/
Dtest_deriv.cu71 TEST(Scharr, Accuracy) in TEST() argument
84 cv::Scharr(src, dx_gold, CV_16S, 1, 0, 1, 0, BORDER_REPLICATE); in TEST()
85 cv::Scharr(src, dy_gold, CV_16S, 0, 1, 1, 0, BORDER_REPLICATE); in TEST()
/external/opencv3/doc/py_tutorials/py_imgproc/py_gradients/
Dpy_gradients.markdown10 - We will see following functions : **cv2.Sobel()**, **cv2.Scharr()**, **cv2.Laplacian()** etc
15 OpenCV provides three types of gradient filters or High-pass filters, Sobel, Scharr and Laplacian.
18 ### 1. Sobel and Scharr Derivatives
23 argument ksize. If ksize = -1, a 3x3 Scharr filter is used which gives better results than 3x3 Sobel
/external/opencv3/doc/tutorials/imgproc/imgtrans/sobel_derivatives/
Dsobel_derivatives.markdown10 - Use the OpenCV function @ref cv::Scharr to calculate a more accurate derivative for a kernel of
86 this inaccuracy for kernels of size 3 by using the @ref cv::Scharr function. This is as fast
98 You can check out more information of this function in the OpenCV reference (@ref cv::Scharr ).
100 there is also code for the @ref cv::Scharr function commented. Uncommenting it (and obviously
/external/opencv3/modules/features2d/src/kaze/
Dnldiffusion_functions.cpp82 Scharr(src, dst, CV_32F, xorder, yorder, 1.0, 0, BORDER_DEFAULT); in image_derivatives_scharr()
230 Scharr(gaussian, Lx, CV_32F, 1, 0, 1, 0, cv::BORDER_DEFAULT); in compute_k_percentile()
231 Scharr(gaussian, Ly, CV_32F, 0, 1, 1, 0, cv::BORDER_DEFAULT); in compute_k_percentile()
DKAZEFeatures.cpp121 Scharr(evolution_[i].Lsmooth, evolution_[i].Lx, CV_32F, 1, 0, 1, 0, BORDER_DEFAULT); in Create_Nonlinear_Scale_Space()
122 Scharr(evolution_[i].Lsmooth, evolution_[i].Ly, CV_32F, 0, 1, 1, 0, BORDER_DEFAULT); in Create_Nonlinear_Scale_Space()
/external/opencv3/modules/imgproc/perf/
Dperf_sepfilters.cpp160 TEST_CYCLE() Scharr(src, dst, ddepth, dx, dy, 1, 0, border);
188 TEST_CYCLE() Scharr(src, dst, ddepth, dx, dy, 1, 0, border);
/external/opencv3/modules/imgproc/test/ocl/
Dtest_filters.cpp204 OCL_OFF(cv::Scharr(src_roi, dst_roi, -1, dx, dy, scale, /* delta */ 0, borderType)); in OCL_TEST_P()
205 OCL_ON(cv::Scharr(usrc_roi, udst_roi, -1, dx, dy, scale, /* delta */ 0, borderType)); in OCL_TEST_P()
/external/opencv3/modules/cudafilters/test/
Dtest_filters.cpp357 PARAM_TEST_CASE(Scharr, cv::cuda::DeviceInfo, cv::Size, MatDepth, Channels, Deriv_X, Deriv_Y, Borde… in PARAM_TEST_CASE() argument
387 CUDA_TEST_P(Scharr, Accuracy) in CUDA_TEST_P() argument
400 cv::Scharr(src, dst_gold, -1, dx, dy, 1.0, 0.0, borderType); in CUDA_TEST_P()
405 INSTANTIATE_TEST_CASE_P(CUDA_Filters, Scharr, testing::Combine(
/external/opencv3/modules/cudafilters/perf/
Dperf_filters.cpp200 PERF_TEST_P(Sz_Type, Scharr, Combine(CUDA_TYPICAL_MAT_SIZES, Values(CV_8UC1, CV_8UC4, CV_32FC1))) in PERF_TEST_P() argument
225 TEST_CYCLE() cv::Scharr(src, dst, -1, 1, 0); in PERF_TEST_P()
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_filters.cpp221 OCL_PERF_TEST_P(ScharrFixture, Scharr, in OCL_PERF_TEST_P() argument
234 OCL_TEST_CYCLE() cv::Scharr(src, dst, -1, dx, dy); in OCL_PERF_TEST_P()
/external/opencv3/modules/imgproc/src/
Dcorner.cpp297 Scharr( src, Dx, CV_32F, 1, 0, scale, 0, borderType ); in cornerEigenValsVecs()
298 Scharr( src, Dy, CV_32F, 0, 1, scale, 0, borderType ); in cornerEigenValsVecs()
429 Scharr(_src, Dx, CV_32F, 1, 0, scale, 0, borderType); in extractCovData()
430 Scharr(_src, Dy, CV_32F, 0, 1, scale, 0, borderType); in extractCovData()
Dderiv.cpp613 void cv::Scharr( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, in Scharr() function in cv
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java1637 Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0); in testScharrMatMatIntIntInt()
1646 Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0, 1.5, 0.001); in testScharrMatMatIntIntIntDoubleDouble()
1655 Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0, 1.5, 0, Core.BORDER_REFLECT); in testScharrMatMatIntIntIntDoubleDoubleInt()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java702 …public static void Scharr(Mat src, Mat dst, int ddepth, int dx, int dy, double scale, double delta… in Scharr() method in Imgproc
711 …public static void Scharr(Mat src, Mat dst, int ddepth, int dx, int dy, double scale, double delta) in Scharr() method in Imgproc
720 public static void Scharr(Mat src, Mat dst, int ddepth, int dx, int dy) in Scharr() method in Imgproc
Dimgproc.cpp1354 …cv::Scharr( src, dst, (int)ddepth, (int)dx, (int)dy, (double)scale, (double)delta, (int)borderType… in Java_org_opencv_imgproc_Imgproc_Scharr_10()
1376 cv::Scharr( src, dst, (int)ddepth, (int)dx, (int)dy, (double)scale, (double)delta ); in Java_org_opencv_imgproc_Imgproc_Scharr_11()
1398 cv::Scharr( src, dst, (int)ddepth, (int)dx, (int)dy ); in Java_org_opencv_imgproc_Imgproc_Scharr_12()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp1394 CV_EXPORTS_W void Scharr( InputArray src, OutputArray dst, int ddepth,
/external/opencv3/modules/imgproc/test/
Dtest_filter.cpp1855 Scharr(src, dst, ddepth, 0, 1); in run()