HomeSort by relevance Sort by last modified time
    Searched refs:CV_THRESH_BINARY (Results 1 - 21 of 21) sorted by null

  /external/opencv/cv/src/
cvadapthresh.cpp 54 int idelta = type == CV_THRESH_BINARY ? cvCeil(delta) : cvFloor(delta);
79 if( type == CV_THRESH_BINARY )
114 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV )
cvthresh.cpp 53 case CV_THRESH_BINARY:
130 case CV_THRESH_BINARY:
353 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV )
355 "In case of different types only CV_THRESH_BINARY "
364 CV_CALL( cvCmpS( src, thresh, dst, type == CV_THRESH_BINARY ? CV_CMP_GT : CV_CMP_LE ));
399 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV ||
403 int v = type == CV_THRESH_BINARY ? (ithresh >= 255 ? 0 : imaxval) :
417 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV )
423 type == CV_THRESH_BINARY ? cvCmpGreater : cvCmpLessEq ));
cvcalibinit.cpp 299 CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, block_size, 0 );
314 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY );
    [all...]
cvcontours.cpp 320 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY );
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
imageSegmentation.cpp 77 threshold(bw, bw, 40, 255, CV_THRESH_BINARY | CV_THRESH_OTSU);
95 threshold(dist, dist, .4, 1., CV_THRESH_BINARY);
  /external/opencv3/modules/calib3d/src/
checkchessboard.cpp 142 cvThreshold(white, thresh, thresh_level + black_white_gap, 255, CV_THRESH_BINARY);
calibinit.cpp 343 CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, block_size, (k/2)*5 );
358 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY );
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
introduction_to_pca.cpp 119 threshold(gray, bw, 50, 255, CV_THRESH_BINARY | CV_THRESH_OTSU);
  /external/opencv/
cvjni.cpp 227 cvThreshold( grayImage, binaryImage, THRESHOLD, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY );
730 cvThreshold( hueImage, thresholdImage1, THRESH_BOTTOM, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY );
  /external/opencv/cvaux/src/
cvfacedetection.cpp 120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY);
cvsegment.cpp 513 cvThreshold( canny, canny, 1, 1, CV_THRESH_BINARY );
cvvecfacetracking.cpp 310 cvThreshold(img, thresh, colors[i], 255.0, CV_THRESH_BINARY);
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
types_c.h 571 CV_THRESH_BINARY =0, /**< value = value > threshold ? max_value : 0 */
imgproc_c.h     [all...]
  /external/opencv3/modules/imgproc/test/
test_thresh.cpp 151 case CV_THRESH_BINARY:
test_contours.cpp 201 cvThreshold( img, img, val - 2, val, CV_THRESH_BINARY );
  /external/opencv/cv/include/
cv.h     [all...]
  /external/opencv3/modules/imgproc/src/
contours.cpp 303 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY );
    [all...]
thresh.cpp     [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 54 CV_THRESH_BINARY = 0,
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 640 milliseconds