floodFill        3143 modules/imgproc/include/opencv2/imgproc.hpp CV_EXPORTS int floodFill( InputOutputArray image,
floodFill        3218 modules/imgproc/include/opencv2/imgproc.hpp CV_EXPORTS_W int floodFill( InputOutputArray image, InputOutputArray mask,
floodFill         822 modules/imgproc/misc/java/test/ImgprocTest.java         int retval = Imgproc.floodFill(img, mask, new Point(matSize / 2, matSize / 2), new Scalar(1));
floodFill         835 modules/imgproc/misc/java/test/ImgprocTest.java         int retval = Imgproc.floodFill(img, new Mat(), new Point(matSize / 2, matSize / 2), new Scalar(1));
floodFill          67 modules/imgproc/perf/perf_floodfill.cpp         cv::floodFill(source, pseed, newval, &outputRect, loVal, upVal, flags);
floodFill         632 modules/imgproc/src/floodfill.cpp     return floodFill(_image, Mat(), seedPoint, newVal, rect, loDiff, upDiff, flags);
floodFill         645 modules/imgproc/src/floodfill.cpp     int area = cv::floodFill(img, mask, seed_point, newVal,
floodFill         217 modules/imgproc/test/test_floodfill.cpp             area = cv::floodFill( img, seed_pt, new_val, &rect, l_diff, u_diff, flags );
floodFill         219 modules/imgproc/test/test_floodfill.cpp             area = cv::floodFill( img, mask, seed_pt, new_val, &rect, l_diff, u_diff, flags );
floodFill         305 modules/stitching/src/seam_finders.cpp                 floodFill(labels_, Point(x, y), ++ncomps_);
floodFill         954 modules/stitching/src/seam_finders.cpp                 floodFill(mask, Point(x, y), ++ncomps);
floodFill         351 samples/cpp/detect_mser.cpp         floodFill(img, p0, Scalar(color[i]));
floodFill         360 samples/cpp/detect_mser.cpp         floodFill(img, p0, Scalar(color[i]));
floodFill         370 samples/cpp/detect_mser.cpp         floodFill(img, p0, Scalar(color[i]));
floodFill         380 samples/cpp/detect_mser.cpp         floodFill(img, p0, Scalar(color[i]));
floodFill          59 samples/cpp/ffilldemo.cpp         area = floodFill(dst, mask, seed, newVal, &ccomp, Scalar(lo, lo, lo),
floodFill          65 samples/cpp/ffilldemo.cpp         area = floodFill(dst, seed, newVal, &ccomp, Scalar(lo, lo, lo),
floodFill          69 samples/cpp/tutorial_code/Histograms_Matching/calcBackProject_Demo2.cpp   floodFill( src, mask2, seed, newVal, 0, Scalar( lo, lo, lo ), Scalar( up, up, up), flags );