HomeSort by relevance Sort by last modified time
    Searched refs:THRESH_BINARY (Results 1 - 25 of 33) sorted by null

1 2

  /external/opencv3/modules/imgproc/perf/
perf_threshold.cpp 9 CV_ENUM(ThreshType, THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO, THRESH_TOZERO_INV)
55 TEST_CYCLE_MULTIRUN(runs) threshold(src, dst, 0, maxval, THRESH_BINARY|THRESH_OTSU);
60 CV_ENUM(AdaptThreshType, THRESH_BINARY, THRESH_BINARY_INV)
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Morphology_3.cpp 47 adaptiveThreshold(~gray, bw, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 15, -2);
103 adaptiveThreshold(vertical, edges, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 3, -2);
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
hull_demo.cpp 60 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
generalContours_demo1.cpp 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
generalContours_demo2.cpp 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
  /external/opencv3/modules/imgproc/src/opencl/
threshold.cl 74 #ifdef THRESH_BINARY
  /external/opencv3/samples/cpp/
bgfg_segm.cpp 83 threshold(fgmask, fgmask, 10, 255, THRESH_BINARY);
ffilldemo.cpp 58 threshold(mask, mask, 1, 128, THRESH_BINARY);
  /external/opencv3/samples/python2/
squares.py 26 retval, bin = cv2.threshold(gray, thrs, 255, cv2.THRESH_BINARY)
  /external/opencv3/modules/features2d/test/
test_mser.cpp 130 threshold(src, src, thresh, 255, THRESH_BINARY);
  /external/opencv3/modules/cudev/test/
test_cmp_op.cu 140 cv::threshold(src, dst_gold, 128, 0, THRESH_BINARY);
  /external/opencv3/modules/core/test/ocl/
test_matrix_operation.cpp 139 cv::threshold(mask, mask, 0.5, 255., THRESH_BINARY);
  /external/opencv3/samples/tapi/
squares.cpp 69 cv::threshold(gray0, gray, (l+1)*255/N, 255, THRESH_BINARY);
  /external/opencv3/modules/imgproc/src/
thresh.cpp 130 case THRESH_BINARY:
180 case THRESH_BINARY:
293 case THRESH_BINARY:
474 case THRESH_BINARY:
719 case THRESH_BINARY:
    [all...]
  /external/opencv3/modules/calib3d/src/
quadsubpix.cpp 188 threshold(img, white_comp, white_thresh, 255.0, THRESH_BINARY);
  /external/opencv3/modules/cudalegacy/src/
gmg.cpp 224 cuda::threshold(buf_, fgmask, thresh, 255.0, THRESH_BINARY, stream);
  /external/opencv3/modules/cudalegacy/test/
test_labeling.cpp 175 cv::threshold(image, image, 150, 255, cv::THRESH_BINARY);
  /external/opencv3/modules/imgproc/test/ocl/
test_accumulate.cpp 85 threshold(mask, mask, 80, 255, THRESH_BINARY);
test_imgproc.cpp 477 Values(ThreshOp(THRESH_BINARY),
  /external/opencv3/modules/features2d/src/
blobdetector.cpp 318 threshold(grayscaleImage, binarizedImage, thresh, 255, THRESH_BINARY);
  /external/opencv3/modules/imgproc/perf/opencl/
perf_imgproc.cpp 256 CV_ENUM(ThreshType, THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO_INV)
  /external/opencv3/modules/ts/src/
ocl_test.cpp 305 threshold(diff, diff_thresh, eps, 255.0, cv::THRESH_BINARY);
  /external/opencv3/samples/gpu/performance/
tests.cpp 770 SUBTEST << size << 'x' << size << ", 8UC1, THRESH_BINARY";
774 threshold(src, dst, 50.0, 0.0, THRESH_BINARY);
777 threshold(src, dst, 50.0, 0.0, THRESH_BINARY);
782 cuda::threshold(d_src, d_dst, 50.0, 0.0, THRESH_BINARY);
785 cuda::threshold(d_src, d_dst, 50.0, 0.0, THRESH_BINARY);
  /cts/apps/CameraITS/tests/scene4/
test_aspect_ratio_and_crop.py 267 cv2.THRESH_BINARY + cv2.THRESH_OTSU)
  /external/opencv3/modules/ts/include/opencv2/ts/
ocl_test.hpp 360 CV_ENUM(ThreshOp, THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO, THRESH_TOZERO_INV)

Completed in 2011 milliseconds

1 2