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

  /external/opencv3/doc/py_tutorials/py_imgproc/py_morphological_ops/
py_morphological_ops.markdown 11 **cv2.morphologyEx()** etc.
66 we explained above. Here we use the function, **cv2.morphologyEx()**
68 opening = cv2.morphologyEx(img, cv2.MORPH_OPEN, kernel)
79 closing = cv2.morphologyEx(img, cv2.MORPH_CLOSE, kernel)
91 gradient = cv2.morphologyEx(img, cv2.MORPH_GRADIENT, kernel)
102 tophat = cv2.morphologyEx(img, cv2.MORPH_TOPHAT, kernel)
112 blackhat = cv2.morphologyEx(img, cv2.MORPH_BLACKHAT, kernel)
  /external/opencv3/samples/cpp/
morphology2.cpp 39 morphologyEx(src, dst, MORPH_OPEN, element);
41 morphologyEx(src, dst, MORPH_CLOSE, element);
  /external/opencv3/modules/imgproc/test/ocl/
test_filters.cpp 277 // MorphologyEx
279 PARAM_TEST_CASE(MorphologyEx, MatType,
337 OCL_TEST_P(MorphologyEx, Mat)
346 OCL_OFF(cv::morphologyEx(src_roi, dst_roi, op, kernel, Point(-1, -1), iterations) );
347 OCL_ON(cv::morphologyEx(usrc_roi, udst_roi, op, kernel, Point(-1, -1), iterations) );
432 OCL_INSTANTIATE_TEST_CASE_P(Filter, MorphologyEx, Combine(
  /external/opencv3/doc/tutorials/imgproc/opening_closing_hats/
opening_closing_hats.markdown 9 - Use the OpenCV function @ref cv::morphologyEx to apply Morphological Transformation such as:
150 morphologyEx( src, dst, operation, element );
198 morphologyEx( src, dst, operation, element );
204 cv::morphologyEx . In this example we use four arguments (leaving the rest as defaults):
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Morphology_2.cpp 77 morphologyEx( src, dst, operation, element );
  /external/opencv3/samples/python2/
morphology.py 59 res = cv2.morphologyEx(img, getattr(cv2, oper_name), st, iterations=iters)
  /external/opencv3/modules/cudafilters/perf/
perf_filters.cpp 339 // MorphologyEx
345 PERF_TEST_P(Sz_Type_Op, MorphologyEx, Combine(CUDA_TYPICAL_MAT_SIZES, Values(CV_8UC1, CV_8UC4), MorphOp::all()))
373 TEST_CYCLE() cv::morphologyEx(src, dst, morphOp, ker);
  /external/opencv3/modules/imgproc/perf/opencl/
perf_filters.cpp 171 ///////////// MorphologyEx ////////////////////////
178 OCL_PERF_TEST_P(MorphologyExFixture, MorphologyEx,
191 OCL_TEST_CYCLE() cv::morphologyEx(src, dst, op, ker);
  /external/opencv3/doc/py_tutorials/py_imgproc/py_watershed/
py_watershed.markdown 81 opening = cv2.morphologyEx(thresh,cv2.MORPH_OPEN,kernel, iterations = 2)
  /external/opencv3/doc/py_tutorials/py_video/py_bg_subtraction/
py_bg_subtraction.markdown 134 fgmask = cv2.morphologyEx(fgmask, cv2.MORPH_OPEN, kernel)
  /external/opencv3/modules/cudafilters/include/opencv2/
cudafilters.hpp 259 @sa morphologyEx
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java     [all...]
imgproc.cpp     [all...]
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java     [all...]
  /external/opencv3/modules/imgproc/test/
test_filter.cpp     [all...]
  /external/opencv3/modules/cudafilters/test/
test_filters.cpp 634 cv::morphologyEx(src, dst_gold, morphOp, kernel, anchor, iterations);
  /external/opencv3/modules/imgproc/src/
morph.cpp     [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 351 @see cv::morphologyEx
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 4853 milliseconds