accumulate        301 modules/calib3d/src/circlesgrid.cpp     Point2f center = std::accumulate(corners.begin(), corners.end(), Point2f(0.0f, 0.0f));
accumulate        173 modules/calib3d/test/test_affine3d_estimator.cpp         m == accumulate(outl.begin(), outl.begin() + m, 0);
accumulate        448 modules/calib3d/test/test_chesscorners.cpp         Point2f c = std::accumulate(cg.begin(), cg.end(), Point2f(), plus<Point2f>()) * (1.f/cg.size());
accumulate       2306 modules/imgproc/include/opencv2/imgproc.hpp CV_EXPORTS_W void accumulate( InputArray src, InputOutputArray dst,
accumulate       2802 modules/imgproc/include/opencv2/imgproc.hpp                           const float** ranges, bool uniform = true, bool accumulate = false );
accumulate       2812 modules/imgproc/include/opencv2/imgproc.hpp                           bool uniform = true, bool accumulate = false );
accumulate       2820 modules/imgproc/include/opencv2/imgproc.hpp                             bool accumulate = false );
accumulate        767 modules/imgproc/include/opencv2/imgproc/imgproc_c.h                             int accumulate CV_DEFAULT(0),
accumulate        772 modules/imgproc/include/opencv2/imgproc/imgproc_c.h                              int accumulate CV_DEFAULT(0),
accumulate        775 modules/imgproc/include/opencv2/imgproc/imgproc_c.h     cvCalcArrHist( (CvArr**)image, hist, accumulate, mask );
accumulate         44 modules/imgproc/misc/java/test/ImgprocTest.java         Imgproc.accumulate(src, dst);
accumulate         45 modules/imgproc/misc/java/test/ImgprocTest.java         Imgproc.accumulate(src, dst2);
accumulate         57 modules/imgproc/misc/java/test/ImgprocTest.java         Imgproc.accumulate(src, dst, mask);
accumulate         58 modules/imgproc/misc/java/test/ImgprocTest.java         Imgproc.accumulate(src, dst2, mask);
accumulate         70 modules/imgproc/perf/opencl/perf_accumulate.cpp     OCL_TEST_CYCLE() cv::accumulate(src, dst);
accumulate       1195 modules/imgproc/src/accum.cpp     cv::accumulate( src, dst, mask );
accumulate       1225 modules/imgproc/src/histogram.cpp                    const float** ranges, bool uniform, bool accumulate )
accumulate       1241 modules/imgproc/src/histogram.cpp                 !accumulate && uniform)
accumulate       1267 modules/imgproc/src/histogram.cpp     if( !accumulate || histdata != hist.data )
accumulate       1429 modules/imgproc/src/histogram.cpp                       const float** ranges, bool uniform, bool accumulate, bool keepInt )
accumulate       1433 modules/imgproc/src/histogram.cpp     if( !accumulate )
accumulate       1539 modules/imgproc/src/histogram.cpp                const float** ranges, bool uniform, bool accumulate )
accumulate       1543 modules/imgproc/src/histogram.cpp               ranges, uniform, accumulate, false );
accumulate       1551 modules/imgproc/src/histogram.cpp                    bool accumulate )
accumulate       1554 modules/imgproc/src/histogram.cpp                channels[0] == 0 && images.isUMatVector() && mask.empty() && !accumulate &&
accumulate       1578 modules/imgproc/src/histogram.cpp             true, accumulate);
accumulate       3177 modules/imgproc/src/histogram.cpp cvCalcArrHist( CvArr** img, CvHistogram* hist, int accumulate, const CvArr* mask )
accumulate       3215 modules/imgproc/src/histogram.cpp                       H, cvGetDims(hist->bins), H.size, ranges, uniform, accumulate != 0 );
accumulate       3221 modules/imgproc/src/histogram.cpp         if( !accumulate )
accumulate       3226 modules/imgproc/src/histogram.cpp                       sH.dims() > 0 ? sH.hdr->size : 0, ranges, uniform, accumulate != 0, true );
accumulate       3228 modules/imgproc/src/histogram.cpp         if( accumulate )
accumulate        112 modules/imgproc/test/ocl/test_accumulate.cpp         OCL_OFF(cv::accumulate(src_roi, dst_roi));
accumulate        113 modules/imgproc/test/ocl/test_accumulate.cpp         OCL_ON(cv::accumulate(usrc_roi, udst_roi));
accumulate        125 modules/imgproc/test/ocl/test_accumulate.cpp         OCL_OFF(cv::accumulate(src_roi, dst_roi, mask_roi));
accumulate        126 modules/imgproc/test/ocl/test_accumulate.cpp         OCL_ON(cv::accumulate(usrc_roi, udst_roi, umask_roi));
accumulate         40 samples/cpp/tutorial_code/Histograms_Matching/calcHist_Demo.cpp   bool uniform = true; bool accumulate = false;
accumulate         45 samples/cpp/tutorial_code/Histograms_Matching/calcHist_Demo.cpp   calcHist( &bgr_planes[0], 1, 0, Mat(), b_hist, 1, &histSize, &histRange, uniform, accumulate );
accumulate         46 samples/cpp/tutorial_code/Histograms_Matching/calcHist_Demo.cpp   calcHist( &bgr_planes[1], 1, 0, Mat(), g_hist, 1, &histSize, &histRange, uniform, accumulate );
accumulate         47 samples/cpp/tutorial_code/Histograms_Matching/calcHist_Demo.cpp   calcHist( &bgr_planes[2], 1, 0, Mat(), r_hist, 1, &histSize, &histRange, uniform, accumulate );
accumulate         79 samples/gpu/performance/performance.cpp     double sum = accumulate(samples.begin(), samples.end(), 0.);
accumulate         68 samples/gpu/video_reader.cpp         double cpu_avg = std::accumulate(cpu_times.begin(), cpu_times.end(), 0.0) / cpu_times.size();
accumulate         69 samples/gpu/video_reader.cpp         double gpu_avg = std::accumulate(gpu_times.begin(), gpu_times.end(), 0.0) / gpu_times.size();
accumulate         96 samples/gpu/video_writer.cpp     double cpu_avg = std::accumulate(cpu_times.begin(), cpu_times.end(), 0.0) / cpu_times.size();
accumulate         97 samples/gpu/video_writer.cpp     double gpu_avg = std::accumulate(gpu_times.begin(), gpu_times.end(), 0.0) / gpu_times.size();