/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
Sobel_Demo.cpp | 3 * @brief Sample code using Sobel and/orScharr OpenCV functions to make a simple Edge Detector 23 const char* window_name = "Sobel Demo - Simple Edge Detector"; 48 Sobel( src_gray, grad_x, ddepth, 1, 0, 3, scale, delta, BORDER_DEFAULT ); 53 Sobel( src_gray, grad_y, ddepth, 0, 1, 3, scale, delta, BORDER_DEFAULT );
|
/external/opencv3/samples/python2/ |
coherence.py | 26 gxx = cv2.Sobel(gray, cv2.CV_32F, 2, 0, ksize=sigma) 27 gxy = cv2.Sobel(gray, cv2.CV_32F, 1, 1, ksize=sigma) 28 gyy = cv2.Sobel(gray, cv2.CV_32F, 0, 2, ksize=sigma)
|
digits.py | 129 gx = cv2.Sobel(img, cv2.CV_32F, 1, 0) 130 gy = cv2.Sobel(img, cv2.CV_32F, 0, 1)
|
/external/opencv3/modules/cudev/test/ |
test_deriv.cu | 51 TEST(Sobel, Accuracy) 64 cv::Sobel(src, dx_gold, CV_16S, 1, 0, 3, 1, 0, BORDER_REPLICATE); 65 cv::Sobel(src, dy_gold, CV_16S, 0, 1, 3, 1, 0, BORDER_REPLICATE);
|
/external/opencv3/modules/imgproc/perf/ |
perf_sepfilters.cpp | 30 /**************** Sobel ********************/ 52 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border); 80 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border); 105 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 5, 1, 0, border); 133 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 5, 1, 0, border); 213 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, -1, 1, 0, border); 241 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, -1, 1, 0, border);
|
/external/opencv3/modules/videostab/src/ |
deblurring.cpp | 56 Sobel(frame, Gx, CV_32F, 1, 0); 57 Sobel(frame, Gy, CV_32F, 0, 1);
|
/external/opencv3/modules/imgproc/src/ |
canny.cpp | 135 Sobel operator 172 Sobel(_src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); 173 Sobel(_src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); 263 // In sobel transform we calculate ksize2 extra lines for the first and last rows of each slice 278 Sobel(src, tempdx.rowRange(1, tempdx.rows - 1), CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); 279 Sobel(src, tempdy.rowRange(1, tempdy.rows - 1), CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); 292 Sobel(src.rowRange(boundaries.start, boundaries.end + 1 + ksize2), tempdx.rowRange(1, tempdx.rows), 294 Sobel(src.rowRange(boundaries.start, boundaries.end + 1 + ksize2), tempdy.rowRange(1, tempdy.rows), 308 Sobel(src.rowRange(boundaries.start - 1 - ksize2, boundaries.end), tempdx.rowRange(0, tempdx.rows - 1), 310 Sobel(src.rowRange(boundaries.start - 1 - ksize2, boundaries.end), tempdy.rowRange(0, tempdy.rows - 1) [all...] |
corner.cpp | 292 Sobel( src, Dx, CV_32F, 1, 0, aperture_size, scale, 0, borderType ); 293 Sobel( src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType ); 407 ocl::Kernel k(format("sobel%d", aperture_size).c_str(), ocl::imgproc::covardata_oclsrc, 424 Sobel(_src, Dx, CV_32F, 1, 0, aperture_size, scale, 0, borderType); 425 Sobel(_src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType); 498 Sobel( _src, D2x, CV_32F, 2, 0, ksize, 1, 0, borderType ); 499 Sobel( _src, D2y, CV_32F, 0, 2, ksize, 1, 0, borderType ); 500 Sobel( _src, Dxy, CV_32F, 1, 1, ksize, 1, 0, borderType ); 683 Sobel( src, Dx, CV_32F, 1, 0, ksize, 1, 0, borderType ); 684 Sobel( src, Dy, CV_32F, 0, 1, ksize, 1, 0, borderType ) [all...] |
generalized_hough.cpp | 118 Sobel(src, dx, CV_32F, 1, 0); 119 Sobel(src, dy, CV_32F, 0, 1);
|
deriv.cpp | 51 Sobel & Scharr Derivative Filters 555 void cv::Sobel( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, [all...] |
/external/opencv3/modules/cudaimgproc/perf/ |
perf_hough.cpp | 246 cv::Sobel(image, dx, CV_32F, 1, 0); 247 cv::Sobel(image, dy, CV_32F, 0, 1); 315 cv::Sobel(image, dx, CV_32F, 1, 0); 316 cv::Sobel(image, dy, CV_32F, 0, 1);
|
/external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/ |
OcvTransform.h | 47 Sobel,
|
OcvTransform.cpp | [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_filters.cpp | 170 // Sobel 183 OCL_OFF(cv::Sobel(src_roi, dst_roi, -1, dx, dy, ksize, scale, /* delta */0, borderType)); 184 OCL_ON(cv::Sobel(usrc_roi, udst_roi, -1, dx, dy, ksize, scale, /* delta */0, borderType));
|
/external/opencv3/modules/photo/src/ |
npr.hpp | 151 Sobel(planes[0], magXR, CV_32FC1, 1, 0, 3); 152 Sobel(planes[0], magYR, CV_32FC1, 0, 1, 3); 154 Sobel(planes[1], magXG, CV_32FC1, 1, 0, 3); 155 Sobel(planes[1], magYG, CV_32FC1, 0, 1, 3); 157 Sobel(planes[2], magXB, CV_32FC1, 1, 0, 3); 158 Sobel(planes[2], magYB, CV_32FC1, 0, 1, 3);
|
/external/opencv3/modules/cudafilters/perf/ |
perf_filters.cpp | 163 // Sobel 165 PERF_TEST_P(Sz_Type_KernelSz, Sobel, Combine(CUDA_TYPICAL_MAT_SIZES, Values(CV_8UC1, CV_8UC4, CV_32FC1), Values(3, 5, 7, 9, 11, 13, 15))) 181 cv::Ptr<cv::cuda::Filter> sobel = cv::cuda::createSobelFilter(d_src.type(), -1, 1, 1, ksize); local 183 TEST_CYCLE() sobel->apply(d_src, dst); 191 TEST_CYCLE() cv::Sobel(src, dst, -1, 1, 1, ksize);
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_filters.cpp | 196 ///////////// Sobel //////////////////////// 200 OCL_PERF_TEST_P(SobelFixture, Sobel, 212 OCL_TEST_CYCLE() cv::Sobel(src, dst, -1, dx, dy);
|
/external/opencv3/modules/cudafilters/test/ |
test_filters.cpp | 288 // Sobel 290 PARAM_TEST_CASE(Sobel, cv::cuda::DeviceInfo, cv::Size, MatDepth, Channels, KSize, Deriv_X, Deriv_Y, BorderType, UseRoi) 322 CUDA_TEST_P(Sobel, Accuracy) 329 cv::Ptr<cv::cuda::Filter> sobel = cv::cuda::createSobelFilter(src.type(), -1, dx, dy, ksize.width, 1.0, borderType); local 332 sobel->apply(loadMat(src, useRoi), dst); 335 cv::Sobel(src, dst_gold, -1, dx, dy, ksize.width, 1.0, 0.0, borderType); 340 INSTANTIATE_TEST_CASE_P(CUDA_Filters, Sobel, testing::Combine(
|
/external/opencv3/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ |
ImageManipulationsActivity.java | 136 mItemPreviewSobel = menu.add("Sobel"); 272 Imgproc.Sobel(grayInnerWindow, mIntermediateMat, CvType.CV_8U, 1, 1);
|
/external/opencv3/modules/stitching/src/ |
seam_finders.cpp | 539 Sobel(gray, gradx1_, CV_32F, 1, 0); 540 Sobel(gray, grady1_, CV_32F, 0, 1); 547 Sobel(gray, gradx2_, CV_32F, 1, 0); 548 Sobel(gray, grady2_, CV_32F, 0, 1); [all...] |
/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | [all...] |
/external/opencv3/modules/calib3d/test/ |
test_stereomatching.cpp | 85 Mat dxI; Sobel( img, dxI, CV_32FC1, 1, 0, 3 );
|
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | [all...] |
/external/opencv3/modules/java/src/ |
imgproc+Imgproc.java | 666 // C++: void Sobel(Mat src, Mat& dst, int ddepth, int dx, int dy, int ksize = 3, double scale = 1, double delta = 0, int borderType = BORDER_DEFAULT) 669 //javadoc: Sobel(src, dst, ddepth, dx, dy, ksize, scale, delta, borderType) 670 public static void Sobel(Mat src, Mat dst, int ddepth, int dx, int dy, int ksize, double scale, double delta, int borderType) 678 //javadoc: Sobel(src, dst, ddepth, dx, dy, ksize, scale, delta) 679 public static void Sobel(Mat src, Mat dst, int ddepth, int dx, int dy, int ksize, double scale, double delta) 687 //javadoc: Sobel(src, dst, ddepth, dx, dy) 688 public static void Sobel(Mat src, Mat dst, int ddepth, int dx, int dy) [all...] |
/external/opencv3/modules/imgproc/test/ |
test_filter.cpp | 477 /////////////// sobel /////////////// 541 /*cv::Sobel( test_mat[inplace ? OUTPUT : INPUT][0], [all...] |