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

  /external/opencv3/samples/cpp/
ffilldemo.cpp 13 cout << "\nThis program demonstrated the floodFill() function\n"
22 "\ts - use null-range floodfill\n"
23 "\tf - use gradient floodfill with fixed(absolute) range\n"
24 "\tg - use gradient floodfill with floating(relative) range\n"
59 area = floodFill(dst, mask, seed, newVal, &ccomp, Scalar(lo, lo, lo),
65 area = floodFill(dst, seed, newVal, &ccomp, Scalar(lo, lo, lo),
144 cout << "Simple floodfill mode is set\n";
148 cout << "Fixed Range floodfill mode is set\n";
152 cout << "Gradient (floating range) floodfill mode is set\n";
detect_mser.cpp 351 floodFill(img, p0, Scalar(color[i]));
360 floodFill(img, p0, Scalar(color[i]));
370 floodFill(img, p0, Scalar(color[i]));
380 floodFill(img, p0, Scalar(color[i]));
  /external/opencv3/modules/imgproc/perf/
perf_floodfill.cpp 52 int newMaskVal = 255; //base mask for floodfill type
67 cv::floodFill(source, pseed, newval, &outputRect, loVal, upVal, flags);
  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
calcBackProject_Demo2.cpp 41 /// Set Trackbars for floodfill thresholds
69 floodFill( src, mask2, seed, newVal, 0, Scalar( lo, lo, lo ), Scalar( up, up, up), flags );
  /external/opencv3/samples/python2/
floodfill.py 4 Floodfill sample.
7 floodfill.py [<image>]
41 cv2.imshow('floodfill', img)
45 lo = cv2.getTrackbarPos('lo', 'floodfill')
46 hi = cv2.getTrackbarPos('hi', 'floodfill')
50 cv2.floodFill(flooded, mask, seed_pt, (255, 255, 255), (lo,)*3, (hi,)*3, flags)
52 cv2.imshow('floodfill', flooded)
61 cv2.setMouseCallback('floodfill', onmouse)
62 cv2.createTrackbar('lo', 'floodfill', 20, 255, update)
63 cv2.createTrackbar('hi', 'floodfill', 20, 255, update
    [all...]
  /external/opencv3/modules/imgproc/src/
floodfill.cpp 126 // Simple Floodfill (repainting single-color connected component)
221 * Gradient Floodfill *
458 int cv::floodFill( InputOutputArray _image, InputOutputArray _mask,
628 int cv::floodFill( InputOutputArray _image, Point seedPoint,
632 return floodFill(_image, Mat(), seedPoint, newVal, rect, loDiff, upDiff, flags);
645 int area = cv::floodFill(img, mask, seed_point, newVal,
  /external/opencv3/modules/imgproc/test/
test_floodfill.cpp 217 area = cv::floodFill( img, seed_pt, new_val, &rect, l_diff, u_diff, flags );
219 area = cv::floodFill( img, mask, seed_pt, new_val, &rect, l_diff, u_diff, flags );
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp 368 //! floodfill algorithm flags
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Image.h     [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp     [all...]
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java 822 int retval = Imgproc.floodFill(img, mask, new Point(matSize / 2, matSize / 2), new Scalar(1));
835 int retval = Imgproc.floodFill(img, new Mat(), new Point(matSize / 2, matSize / 2), new Scalar(1));
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java     [all...]
imgproc.cpp     [all...]
  /external/opencv3/modules/stitching/src/
seam_finders.cpp 305 floodFill(labels_, Point(x, y), ++ncomps_);
954 floodFill(mask, Point(x, y), ++ncomps);
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 838 milliseconds