HomeSort by relevance Sort by last modified time
    Searched full:threshold1 (Results 1 - 13 of 13) sorted by null

  /external/opencv3/modules/imgproc/test/
test_canny.cpp 62 double threshold1, threshold2; member in class:CV_CannyTest
75 threshold1 = threshold2 = 0;
94 threshold1 = cvtest::randReal(rng)*thresh_range;
98 CV_SWAP( threshold1, threshold2, thresh_range );
127 cvCanny( test_array[INPUT][0], test_array[OUTPUT][0], threshold1, threshold2,
132 cv::Canny(cv::cvarrToMat(test_array[INPUT][0]), _out, threshold1, threshold2, local
161 double threshold1, double threshold2,
168 float lowThreshold = (float)MIN(threshold1, threshold2);
169 float highThreshold = (float)MAX(threshold1, threshold2);
254 test_Canny( src, dst, threshold1, threshold2, aperture_size, use_true_gradient )
    [all...]
  /external/webp/src/utils/
quant_levels_dec.c 161 // f(x) = 0 for x >= threshold1
162 // and a linear interpolation for range x=[threshold2, threshold1]
164 // Note that: threshold2 = 3/4 * threshold1
165 const int threshold1 = min_dist << LFIX; local
166 const int threshold2 = (3 * threshold1) >> 2;
168 const int delta = threshold1 - threshold2;
172 : (i < threshold1) ? max_threshold * (threshold1 - i) / delta
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 185 int level, int threshold1, int threshold2 )
224 if( threshold1 < 0 || threshold2 < 0 )
329 (float) threshold1, is_last_iter, &stub,
598 int level, int threshold1, int threshold2 )
627 threshold1 *= _CV_RGB_THRESH_SCALE;
641 if( threshold1 < 0 || threshold2 < 0 )
749 (float) threshold1, is_last_iter, &stub,
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
pickinter.c 89 int threshold1 = 6; local
126 if (grad_last >= threshold1 && grad_source <= threshold2)
134 if (grad_last >= threshold1 && grad_source <= threshold2)
142 if (grad_last >= threshold1 && grad_source <= threshold2)
150 if (grad_last >= threshold1 && grad_source <= threshold2)
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 762 // C++: void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)
765 //javadoc: Canny(image, edges, threshold1, threshold2, apertureSize, L2gradient)
766 public static void Canny(Mat image, Mat edges, double threshold1, double threshold2, int apertureSize, boolean L2gradient)
769 Canny_0(image.nativeObj, edges.nativeObj, threshold1, threshold2, apertureSize, L2gradient);
774 //javadoc: Canny(image, edges, threshold1, threshold2)
775 public static void Canny(Mat image, Mat edges, double threshold1, double threshold2)
778 Canny_1(image.nativeObj, edges.nativeObj, threshold1, threshold2);
    [all...]
imgproc.cpp     [all...]
  /external/opencv3/modules/imgproc/src/
canny.cpp     [all...]
  /external/opencv/cv/include/
cv.h 130 int level, double threshold1,
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h     [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /prebuilts/python/linux-x86/2.7.5/bin/
python 
python2 
python2.7 

Completed in 1097 milliseconds