Home
last modified time | relevance | path

Searched refs:calcBackProject (Results 1 – 15 of 15) sorted by relevance

/external/opencv3/modules/imgproc/test/ocl/
Dtest_histogram.cpp179 OCL_OFF(calcBackProject(&frame1, 1, 0, hist1, dst1, &ranges1, 1, true)); in PARAM_TEST_CASE()
180 OCL_ON(calcBackProject(uims, chs, uhist1, udst1, urngs, 1.0)); in PARAM_TEST_CASE()
205 OCL_OFF(cv::calcBackProject(images_roi, channels, hist_roi, dst_roi, ranges, scale)); in OCL_TEST_P()
206 OCL_ON(cv::calcBackProject(uimages_roi, channels, uhist_roi, udst_roi, ranges, scale)); in OCL_TEST_P()
/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
DcalcBackProject_Demo1.cpp71 calcBackProject( &hue, 1, 0, hist, backproj, &ranges, 1, true ); in Hist_and_Backproj()
DcalcBackProject_Demo2.cpp99 calcBackProject( &hsv, 1, channels, hist, backproj, ranges, 1, true ); in Hist_and_Backproj()
/external/opencv3/doc/tutorials/imgproc/histograms/back_projection/
Dback_projection.markdown10 - How to use the OpenCV function @ref cv::calcBackProject to calculate Back Projection
148 -# Get the Backprojection of the same image by calling the function @ref cv::calcBackProject
151 calcBackProject( &hue, 1, 0, hist, backproj, &ranges, 1, true );
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_backprojection/
Dpy_histogram_backprojection.markdown79 OpenCV provides an inbuilt function **cv2.calcBackProject()**. Its parameters are almost same as the
99 dst = cv2.calcBackProject([hsvt],[0,1],roihist,[0,180,0,256],1)
/external/opencv3/samples/python2/
Dcamshift.py96 prob = cv2.calcBackProject([hsv], [0], self.hist, [0, 180], 1)
/external/opencv3/samples/cpp/
Dcamshiftdemo.cpp155 calcBackProject(&hue, 1, 0, hist, backproj, &phranges); in main()
/external/opencv3/doc/py_tutorials/py_video/py_meanshift/
Dpy_meanshift.markdown71 dst = cv2.calcBackProject([hsv],[0],roi_hist,[0,180],1)
145 dst = cv2.calcBackProject([hsv],[0],roi_hist,[0,180],1)
/external/opencv3/samples/tapi/
Dcamshift.cpp160 … cv::calcBackProject(std::vector<cv::UMat>(1, hue), std::vector<int>(1, 0), hist, backproj, in main()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp2861 CV_EXPORTS void calcBackProject( const Mat* images, int nimages,
2867 CV_EXPORTS void calcBackProject( const Mat* images, int nimages,
2873 CV_EXPORTS_W void calcBackProject( InputArrayOfArrays images, const std::vector<int>& channels,
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_imgproc.cpp120 OCL_TEST_CYCLE() cv::calcBackProject(std::vector<UMat>(1,src), channels, hist, dst, ranges, 1); in OCL_PERF_TEST_P()
/external/opencv3/modules/imgproc/src/
Dhistogram.cpp1876 void cv::calcBackProject( const Mat* images, int nimages, const int* channels, in calcBackProject() function in cv
2039 void cv::calcBackProject( const Mat* images, int nimages, const int* channels, in calcBackProject() function in cv
2217 void cv::calcBackProject( InputArrayOfArrays images, const std::vector<int>& channels, in calcBackProject() function in cv
2265 calcBackProject(&buf[0], nimages, csz ? &channels[0] : 0, in calcBackProject()
3277 cv::calcBackProject( &images[0], (int)images.size(), in cvCalcArrBackProject()
3284 cv::calcBackProject( &images[0], (int)images.size(), in cvCalcArrBackProject()
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java246 Imgproc.calcBackProject(images, channels, hist, dst, ranges, 255); in testCalcBackProject()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java1863 …public static void calcBackProject(List<Mat> images, MatOfInt channels, Mat hist, Mat dst, MatOfFl… in calcBackProject() method in Imgproc
Dimgproc.cpp3924 cv::calcBackProject( images, channels, hist, dst, ranges, (double)scale ); in Java_org_opencv_imgproc_Imgproc_calcBackProject_10()