HomeSort by relevance Sort by last modified time
    Searched defs:src_gray (Results 1 - 10 of 10) sorted by null

  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
Laplace_Demo.cpp 21 Mat src, src_gray, dst; local
38 cvtColor( src, src_gray, COLOR_RGB2GRAY );
46 Laplacian( src_gray, dst, ddepth, kernel_size, scale, delta, BORDER_DEFAULT );
Sobel_Demo.cpp 21 Mat src, src_gray; local
37 cvtColor( src, src_gray, COLOR_RGB2GRAY );
47 //Scharr( src_gray, grad_x, ddepth, 1, 0, scale, delta, BORDER_DEFAULT );
48 Sobel( src_gray, grad_x, ddepth, 1, 0, 3, scale, delta, BORDER_DEFAULT );
52 //Scharr( src_gray, grad_y, ddepth, 0, 1, scale, delta, BORDER_DEFAULT );
53 Sobel( src_gray, grad_y, ddepth, 0, 1, 3, scale, delta, BORDER_DEFAULT );
HoughCircle_Demo.cpp 29 void HoughDetection(const Mat& src_gray, const Mat& src_display, int cannyThreshold, int accumulatorThreshold)
34 HoughCircles( src_gray, circles, HOUGH_GRADIENT, 1, src_gray.rows/8, cannyThreshold, accumulatorThreshold, 0, 0 );
56 Mat src, src_gray; local
76 cvtColor( src, src_gray, COLOR_BGR2GRAY );
79 GaussianBlur( src_gray, src_gray, Size(9, 9), 2, 2 );
102 HoughDetection(src_gray, src, cannyThreshold, accumulatorThreshold);
HoughLines_Demo.cpp 20 Mat src_gray; variable
50 cvtColor( src, src_gray, COLOR_RGB2GRAY );
53 Canny( src_gray, edges, 50, 200, 3 );
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Threshold.cpp 23 Mat src, src_gray, dst; variable
41 cvtColor( src, src_gray, COLOR_RGB2GRAY );
82 threshold( src_gray, dst, threshold_value, max_BINARY_value,threshold_type );
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
findContours_demo.cpp 17 Mat src; Mat src_gray; variable
39 cvtColor( src, src_gray, COLOR_BGR2GRAY );
40 blur( src_gray, src_gray, Size(3,3) );
64 Canny( src_gray, canny_output, thresh, thresh*2, 3 );
generalContours_demo1.cpp 17 Mat src; Mat src_gray; variable
34 cvtColor( src, src_gray, COLOR_BGR2GRAY );
35 blur( src_gray, src_gray, Size(3,3) );
59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
generalContours_demo2.cpp 17 Mat src; Mat src_gray; variable
34 cvtColor( src, src_gray, COLOR_BGR2GRAY );
35 blur( src_gray, src_gray, Size(3,3) );
59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
hull_demo.cpp 17 Mat src; Mat src_gray; variable
34 cvtColor( src, src_gray, COLOR_BGR2GRAY );
35 blur( src_gray, src_gray, Size(3,3) );
60 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
moments_demo.cpp 17 Mat src; Mat src_gray; variable
34 cvtColor( src, src_gray, COLOR_BGR2GRAY );
35 blur( src_gray, src_gray, Size(3,3) );
59 Canny( src_gray, canny_output, thresh, thresh*2, 3 );

Completed in 88 milliseconds